Clean up #if directives.

Change-Id: Ib0a4699331c00c7ef8d82dd4894f7f641062878a
diff --git a/lib/ExecutionEngine/bcc.cpp b/lib/ExecutionEngine/bcc.cpp
index f0501cf..fd79e94 100644
--- a/lib/ExecutionEngine/bcc.cpp
+++ b/lib/ExecutionEngine/bcc.cpp
@@ -122,7 +122,7 @@
 
   void *addr = unwrap(script)->lookup(funcname);
 
-#if USE_DISASSEMBLER_FILE
+#if DEBUG_BCC_REFLECT
   LOGD("Function Address: %s --> %p\n", funcname, addr);
 #endif
 
@@ -144,7 +144,7 @@
   if (varList) {
     unwrap(script)->getExportVarList(varListSize, varList);
 
-#if USE_DISASSEMBLER_FILE
+#if DEBUG_BCC_REFLECT
     size_t count = unwrap(script)->getExportVarCount();
     LOGD("ExportVarCount = %lu\n", (unsigned long)count);
 
@@ -174,7 +174,7 @@
   if (funcList) {
     unwrap(script)->getExportFuncList(funcListSize, funcList);
 
-#if USE_DISASSEMBLER_FILE
+#if DEBUG_BCC_REFLECT
     size_t count = unwrap(script)->getExportFuncCount();
     LOGD("ExportFuncCount = %lu\n", (unsigned long)count);
 
@@ -203,7 +203,7 @@
   BCC_FUNC_LOGGER();
   unwrap(script)->getPragmaList(pragmaListSize, keyList, valueList);
 
-#if USE_DISASSEMBLER_FILE
+#if DEBUG_BCC_REFLECT
   if (keyList && valueList) {
     size_t count = unwrap(script)->getPragmaCount();
     LOGD("PragmaCount = %lu\n", (unsigned long)count);
@@ -251,7 +251,7 @@
 
   if (objectSlotList) {
     unwrap(script)->getObjectSlotList(objectSlotListSize, objectSlotList);
-#if USE_DISASSEMBLER_FILE
+#if DEBUG_BCC_REFLECT
     size_t count = unwrap(script)->getObjectSlotCount();
     LOGD("ObjectSlotCount = %lu\n", (unsigned long)count);