Merge "Quick compiler: enable Arm64 compilation"
diff --git a/dex2oat/dex2oat.cc b/dex2oat/dex2oat.cc
index b6b5313..a793513 100644
--- a/dex2oat/dex2oat.cc
+++ b/dex2oat/dex2oat.cc
@@ -1136,9 +1136,8 @@
   }
 
   if (compiler_filter_string == nullptr) {
-    if (instruction_set == kArm64 ||
-        instruction_set == kMips) {
-      // TODO: implement/fix compilers for these architectures.
+    if (instruction_set == kMips) {
+      // TODO: fix compiler for Mips.
       compiler_filter_string = "interpret-only";
     } else if (image) {
       compiler_filter_string = "speed";