From: Junmo Park Date: Wed, 27 Apr 2016 07:51:50 +0000 (+0900) Subject: ART: add exynos-m1 to a53 #835769 & #843419 erratum exception list X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=2bd7d2d6d92daa796ee33e70bb788d3dae1f2fc9;p=android-x86%2Fart.git ART: add exynos-m1 to a53 #835769 & #843419 erratum exception list Exynos-M1 is custom-designed 64-bit ARM CPU and does not need this A53 erratum handling. Change-Id: I15087b05769eb8d4f80219064549b0b45884bf7c Signed-off-by: Junmo Park --- diff --git a/runtime/arch/arm64/instruction_set_features_arm64.cc b/runtime/arch/arm64/instruction_set_features_arm64.cc index 613bb5c76..cad13b29d 100644 --- a/runtime/arch/arm64/instruction_set_features_arm64.cc +++ b/runtime/arch/arm64/instruction_set_features_arm64.cc @@ -39,7 +39,7 @@ const Arm64InstructionSetFeatures* Arm64InstructionSetFeatures::FromVariant( if (!needs_a53_835769_fix) { // Check to see if this is an expected variant. static const char* arm64_known_variants[] = { - "denver64", "kryo" + "denver64", "kryo", "exynos-m1" }; if (!FindVariantInArray(arm64_known_variants, arraysize(arm64_known_variants), variant)) { std::ostringstream os;