Merge "Disable the ahead-of-time compilation for MIPS."
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 @@
   }
 
   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";