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"));