| commit | c2074caf075818abb6d3689ad924ca09f4a5ba1f | [log] [tgz] |
|---|---|---|
| author | Tim Murray <timmurray@google.com> | Tue Apr 08 15:39:08 2014 -0700 |
| committer | Tim Murray <timmurray@google.com> | Wed Apr 23 10:43:24 2014 -0700 |
| tree | bf7ba60fa900f54498cb3087a3e780cd73be3ecf | |
| parent | 926e0fd2aa8ec58f8be38e2061aa07d9dde299a8 [diff] |
Update libbcc for 64-bit support. Change-Id: I369a82eb6730a33c46b6700408952fe34020ca51
diff --git a/lib/ExecutionEngine/ELFObjectLoaderImpl.cpp b/lib/ExecutionEngine/ELFObjectLoaderImpl.cpp index a470021..6aeda00 100644 --- a/lib/ExecutionEngine/ELFObjectLoaderImpl.cpp +++ b/lib/ExecutionEngine/ELFObjectLoaderImpl.cpp
@@ -46,7 +46,7 @@ // Retrive the pointer to the symbol table. #ifdef __LP64__ mSymTab = static_cast<ELFSectionSymTab<64> *>( - mObject->getSectionByName(".symtab")); + mObject->getSectionByName(".symtab")); #else mSymTab = static_cast<ELFSectionSymTab<32> *>( mObject->getSectionByName(".symtab"));