Quick compiler: support for arrays, misc.
Continuing to flesh out support in the Quick compiler. Mostly
array-related. Also, added runtest 028-array-write to the set of
passing tests.
Change-Id: I3c8eaf4bb14e9327e4f5fc48de73c85a5d3efb54
diff --git a/src/compiler/Frontend.cc b/src/compiler/Frontend.cc
index 9e4b857..ba8d0d8 100644
--- a/src/compiler/Frontend.cc
+++ b/src/compiler/Frontend.cc
@@ -768,6 +768,10 @@
|| (PrettyMethod(method_idx, dex_file).find("math_013") != std::string::npos)
|| (PrettyMethod(method_idx, dex_file).find("math_014") != std::string::npos)
|| (PrettyMethod(method_idx, dex_file).find("float_017") != std::string::npos)
+ || (PrettyMethod(method_idx, dex_file).find("array_028") != std::string::npos)
+ || (PrettyMethod(method_idx, dex_file).find("writeArray") != std::string::npos)
+ || (PrettyMethod(method_idx, dex_file).find("writeTest") != std::string::npos)
+ || (PrettyMethod(method_idx, dex_file).find("copyTest") != std::string::npos)
) {
cUnit->genBitcode = true;
}