summaryrefslogtreecommitdiffstats
path: root/compiler/common_compiler_test.h
diff options
context:
space:
mode:
authorIan Rogers <irogers@google.com>2014-07-07 21:37:04 -0700
committerIan Rogers <irogers@google.com>2014-07-07 21:37:04 -0700
commit9c854ea2d0f9ea7dd9ea5eedc02fd962493ab7d0 (patch)
treec72b6dc3d2875720a2ce8463ac46f27800fff466 /compiler/common_compiler_test.h
parent1a2f84e80e852b1e210ed54fa995f3d781a23bd3 (diff)
downloadart-9c854ea2d0f9ea7dd9ea5eedc02fd962493ab7d0.tar.gz
art-9c854ea2d0f9ea7dd9ea5eedc02fd962493ab7d0.tar.bz2
art-9c854ea2d0f9ea7dd9ea5eedc02fd962493ab7d0.zip
Enable compiler testing for ARM64 and x86-64.
Change-Id: Ica1e43b3cf07de8d4ae2b69f7a8b35205fe32a83
Diffstat (limited to 'compiler/common_compiler_test.h')
-rw-r--r--compiler/common_compiler_test.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/compiler/common_compiler_test.h b/compiler/common_compiler_test.h
index 45cf2fba7f..e11f61a285 100644
--- a/compiler/common_compiler_test.h
+++ b/compiler/common_compiler_test.h
@@ -293,16 +293,12 @@ class CommonCompilerTest : public CommonRuntimeTest {
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);