diff options
author | Maja Gagic <maja.gagic@imgtec.com> | 2015-02-24 16:55:04 +0100 |
---|---|---|
committer | Andreas Gampe <agampe@google.com> | 2015-03-06 13:05:47 -0800 |
commit | 6ea651f0f4c7de4580beb2e887d86802c1ae0738 (patch) | |
tree | fd97dcbd7301892cb785ca34aee21ad86437c3b3 /dex2oat | |
parent | 0e242b5cad3c0b68b72f28c1e5fd3fdd4c05bfd8 (diff) | |
download | art-6ea651f0f4c7de4580beb2e887d86802c1ae0738.zip art-6ea651f0f4c7de4580beb2e887d86802c1ae0738.tar.gz art-6ea651f0f4c7de4580beb2e887d86802c1ae0738.tar.bz2 |
Initial support for quick compiler on MIPS64r6.
Change-Id: I6f43027b84e4a98ea320cddb972d9cf39bf7c4f8
Diffstat (limited to 'dex2oat')
-rw-r--r-- | dex2oat/dex2oat.cc | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/dex2oat/dex2oat.cc b/dex2oat/dex2oat.cc index 8572f4d..96919dc 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) { |