diff options
author | Ian Rogers <irogers@google.com> | 2014-05-01 23:19:20 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2014-05-01 23:19:20 +0000 |
commit | 43221f789244a898dc9f14e8b063d4c73326b47a (patch) | |
tree | 142d314839f1b980535bcd396688f2a1ccaf307d /dex2oat | |
parent | 394d4e772e88a304fed8b721755bc7a8d97fb247 (diff) | |
parent | 7ca278be5f6f15681350e9f05af434df4aab59ca (diff) | |
download | art-43221f789244a898dc9f14e8b063d4c73326b47a.zip art-43221f789244a898dc9f14e8b063d4c73326b47a.tar.gz art-43221f789244a898dc9f14e8b063d4c73326b47a.tar.bz2 |
Merge "Disable the ahead-of-time compilation for MIPS."
Diffstat (limited to 'dex2oat')
-rw-r--r-- | dex2oat/dex2oat.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dex2oat/dex2oat.cc b/dex2oat/dex2oat.cc index 823b818..cdf26f1 100644 --- a/dex2oat/dex2oat.cc +++ b/dex2oat/dex2oat.cc @@ -1010,8 +1010,8 @@ static int dex2oat(int argc, char** argv) { } if (compiler_filter_string == NULL) { - if (instruction_set == kX86_64 || instruction_set == kArm64) { - // TODO: currently x86-64 and arm64 are only interpreted. + if (instruction_set == kX86_64 || instruction_set == kArm64 || instruction_set == kMips) { + // TODO: implement/fix compilers for these architectures. compiler_filter_string = "interpret-only"; } else if (image) { compiler_filter_string = "speed"; |