summaryrefslogtreecommitdiff
path: root/src/compiler/Frontend.cc
diff options
context:
space:
mode:
author buzbee <buzbee@google.com> 2012-06-27 15:44:52 -0700
committer buzbee <buzbee@google.com> 2012-06-27 15:44:52 -0700
commit8fa0fda8e1b6aa0a759990b3d32b78bb08065e0f (patch)
tree4e87b99f5afdc564ee27eb3902e48d52c8795720 /src/compiler/Frontend.cc
parent6613de3585d726a246b5ee2597ddaef8b3c3a621 (diff)
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
Diffstat (limited to 'src/compiler/Frontend.cc')
-rw-r--r--src/compiler/Frontend.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/compiler/Frontend.cc b/src/compiler/Frontend.cc
index 9e4b85787c..ba8d0d8fa9 100644
--- a/src/compiler/Frontend.cc
+++ b/src/compiler/Frontend.cc
@@ -768,6 +768,10 @@ CompiledMethod* oatCompileMethod(Compiler& compiler,
|| (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;
}