From 9c854ea2d0f9ea7dd9ea5eedc02fd962493ab7d0 Mon Sep 17 00:00:00 2001 From: Ian Rogers Date: Mon, 7 Jul 2014 21:37:04 -0700 Subject: Enable compiler testing for ARM64 and x86-64. Change-Id: Ica1e43b3cf07de8d4ae2b69f7a8b35205fe32a83 --- compiler/common_compiler_test.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'compiler/common_compiler_test.h') 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); -- cgit v1.2.3-59-g8ed1b