summaryrefslogtreecommitdiff
path: root/compiler/common_compiler_test.h
diff options
context:
space:
mode:
author Andreas Gampe <agampe@google.com> 2014-03-20 00:20:21 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2014-03-20 00:20:21 +0000
commitba970e18e2e7cd19bb5c3672bff2eae0c11b1795 (patch)
treed9c76db71eb8dd3a668643781eefe6152888fd1d /compiler/common_compiler_test.h
parent66e4c3e96dccdec7423d673ad6bbf7821a776651 (diff)
parentb95a5345ae4217b70ca36f0cced92f68dda7caf5 (diff)
Merge "AArch64: Add arm64 runtime support."
Diffstat (limited to 'compiler/common_compiler_test.h')
-rw-r--r--compiler/common_compiler_test.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/compiler/common_compiler_test.h b/compiler/common_compiler_test.h
index 49c1283809..6aa85d40de 100644
--- a/compiler/common_compiler_test.h
+++ b/compiler/common_compiler_test.h
@@ -300,6 +300,10 @@ class CommonCompilerTest : public CommonRuntimeTest {
// for ARM, do a runtime check to make sure that the features we are passed from
// the build match the features we actually determine at runtime.
ASSERT_EQ(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__)