Updating the compiler to use the new-world model
New compiler is integrated and passes first test (Fibonacci).
Change-Id: Ic5448ab89ebd22baa30fafc3d1300324687d1fc2
diff --git a/src/compiler/Utility.cc b/src/compiler/Utility.cc
index b4dd80c..9c010b5 100644
--- a/src/compiler/Utility.cc
+++ b/src/compiler/Utility.cc
@@ -164,8 +164,7 @@
"Catch Block"
};
- LOG(INFO) << "Compiling " << cUnit->method->clazz->descriptor << " " <<
- cUnit->method->name;
+ LOG(INFO) << "Compiling " << art::PrettyMethod(cUnit->method, true);
LOG(INFO) << cUnit->insns << " insns";
LOG(INFO) << cUnit->numBlocks << " blocks in total";
GrowableListIterator iterator;