Enable compiler testing for ARM64 and x86-64.

Change-Id: Ica1e43b3cf07de8d4ae2b69f7a8b35205fe32a83
diff --git a/compiler/common_compiler_test.h b/compiler/common_compiler_test.h
index 45cf2fb..e11f61a 100644
--- a/compiler/common_compiler_test.h
+++ b/compiler/common_compiler_test.h
@@ -293,16 +293,12 @@
       ASSERT_LE(instruction_set_features, runtime_features);
 #elif defined(__aarch64__)
       instruction_set = kArm64;
-      // TODO: arm64 compilation support.
-      compiler_options_->SetCompilerFilter(CompilerOptions::kInterpretOnly);
 #elif defined(__mips__)
       instruction_set = kMips;
 #elif defined(__i386__)
       instruction_set = kX86;
 #elif defined(__x86_64__)
       instruction_set = kX86_64;
-      // TODO: x86_64 compilation support.
-      compiler_options_->SetCompilerFilter(CompilerOptions::kInterpretOnly);
 #endif
 
       runtime_->SetInstructionSet(instruction_set);