summaryrefslogtreecommitdiffstats
path: root/dex2oat
diff options
context:
space:
mode:
authorAndreas Gampe <agampe@google.com>2015-03-06 21:06:59 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2015-03-06 21:07:44 +0000
commit41b15f9f06c7e2e5aac13f709c66412e6c299b67 (patch)
tree612885348ebff77bd74b2bef63112f864563b6e7 /dex2oat
parent3b5408b565509341301e6da82f3d07c75aad5f51 (diff)
parent6ea651f0f4c7de4580beb2e887d86802c1ae0738 (diff)
downloadart-41b15f9f06c7e2e5aac13f709c66412e6c299b67.zip
art-41b15f9f06c7e2e5aac13f709c66412e6c299b67.tar.gz
art-41b15f9f06c7e2e5aac13f709c66412e6c299b67.tar.bz2
Merge "Initial support for quick compiler on MIPS64r6."
Diffstat (limited to 'dex2oat')
-rw-r--r--dex2oat/dex2oat.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/dex2oat/dex2oat.cc b/dex2oat/dex2oat.cc
index 128f623..c3303e1 100644
--- a/dex2oat/dex2oat.cc
+++ b/dex2oat/dex2oat.cc
@@ -873,14 +873,11 @@ class Dex2Oat FINAL {
// For R6, only interpreter mode is working.
// TODO: fix compiler for Mips32r6.
compiler_filter_string = "interpret-only";
- } else if (instruction_set_ == kMips64) {
- // For Mips64, can only compile in interpreter mode.
- // TODO: fix compiler for Mips64.
- compiler_filter_string = "interpret-only";
} else {
compiler_filter_string = "speed";
}
}
+
CHECK(compiler_filter_string != nullptr);
CompilerOptions::CompilerFilter compiler_filter = CompilerOptions::kDefaultCompilerFilter;
if (strcmp(compiler_filter_string, "verify-none") == 0) {