From 00fd8c2cd76836185fc14bd12385f41d0cbb9400 Mon Sep 17 00:00:00 2001 From: Tim Murray Date: Thu, 11 Jun 2015 17:09:18 -0700 Subject: Add cortex-a53 as a valid instruction set variant for arm64. Change-Id: I720e2cc4acd94e367dae4a21c13aa90a3e30b7cc --- runtime/arch/arm64/instruction_set_features_arm64.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/arch') diff --git a/runtime/arch/arm64/instruction_set_features_arm64.cc b/runtime/arch/arm64/instruction_set_features_arm64.cc index 1f2ce02852..395cee8f05 100644 --- a/runtime/arch/arm64/instruction_set_features_arm64.cc +++ b/runtime/arch/arm64/instruction_set_features_arm64.cc @@ -30,7 +30,7 @@ const Arm64InstructionSetFeatures* Arm64InstructionSetFeatures::FromVariant( // Look for variants that need a fix for a53 erratum 835769. static const char* arm64_variants_with_a53_835769_bug[] = { - "default", "generic" // Pessimistically assume all generic ARM64s are A53s. + "default", "generic", "cortex-a53" // Pessimistically assume all generic ARM64s are A53s. }; bool needs_a53_835769_fix = FindVariantInArray(arm64_variants_with_a53_835769_bug, arraysize(arm64_variants_with_a53_835769_bug), -- cgit v1.2.3