summaryrefslogtreecommitdiffstats
path: root/runtime/arch/arm64
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2014-11-17 12:02:05 -0800
committerIan Rogers <irogers@google.com>2014-11-19 11:53:07 -0800
commit8366ca0d7ba3b80a2d5be65ba436446cc32440bd (patch)
treeb21c1656af3ec5c9f775373c9d78cb832bee2ca9 /runtime/arch/arm64
parent8542ff31bfa778a06316511672dc113a3f19ae5b (diff)
downloadart-8366ca0d7ba3b80a2d5be65ba436446cc32440bd.zip
art-8366ca0d7ba3b80a2d5be65ba436446cc32440bd.tar.gz
art-8366ca0d7ba3b80a2d5be65ba436446cc32440bd.tar.bz2
Fix the last users of TARGET_CPU_SMP.
Everyone else assumes SMP. Change-Id: I7ff7faef46fbec6c67d6e446812d599e473cba39
Diffstat (limited to 'runtime/arch/arm64')
-rw-r--r--runtime/arch/arm64/instruction_set_features_arm64.cc5
1 files changed, 0 insertions, 5 deletions
diff --git a/runtime/arch/arm64/instruction_set_features_arm64.cc b/runtime/arch/arm64/instruction_set_features_arm64.cc
index 5bc943c..a1270dc 100644
--- a/runtime/arch/arm64/instruction_set_features_arm64.cc
+++ b/runtime/arch/arm64/instruction_set_features_arm64.cc
@@ -58,12 +58,7 @@ const Arm64InstructionSetFeatures* Arm64InstructionSetFeatures::FromBitmap(uint3
}
const Arm64InstructionSetFeatures* Arm64InstructionSetFeatures::FromCppDefines() {
-#if defined(HAVE_ANDROID_OS) && (ANDROID_SMP == 0)
- const bool smp = false;
-#else
const bool smp = true;
-#endif
-
const bool is_a53 = true; // Pessimistically assume all ARM64s are A53s.
return new Arm64InstructionSetFeatures(smp, is_a53);
}