diff options
author | Tim Murray <timmurray@google.com> | 2015-06-11 17:09:18 -0700 |
---|---|---|
committer | Tim Murray <timmurray@google.com> | 2015-06-11 17:17:03 -0700 |
commit | 00fd8c2cd76836185fc14bd12385f41d0cbb9400 (patch) | |
tree | de6c69178d41e57331bbe7061d37a962197ba4f3 /runtime/arch | |
parent | 2351c7be90e6cd94b46a6cfb407942f33427283d (diff) | |
download | art-00fd8c2cd76836185fc14bd12385f41d0cbb9400.zip art-00fd8c2cd76836185fc14bd12385f41d0cbb9400.tar.gz art-00fd8c2cd76836185fc14bd12385f41d0cbb9400.tar.bz2 |
Add cortex-a53 as a valid instruction set variant for arm64.
Change-Id: I720e2cc4acd94e367dae4a21c13aa90a3e30b7cc
Diffstat (limited to 'runtime/arch')
-rw-r--r-- | runtime/arch/arm64/instruction_set_features_arm64.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/arch/arm64/instruction_set_features_arm64.cc b/runtime/arch/arm64/instruction_set_features_arm64.cc index 1f2ce02..395cee8 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), |