ART: Fix arm32 assembler test.
Drop the requested architecture from armv7ve to armv7-a, but tune
for cortex-a15. That allows sdiv and udiv, but has the advantage
that it works on gcc 4.8.
Change-Id: I92cca55ce01334119d8a402103ec295c66d34ca6
diff --git a/compiler/utils/arm/assembler_arm32_test.cc b/compiler/utils/arm/assembler_arm32_test.cc
index fe12a22..30b89e1 100644
--- a/compiler/utils/arm/assembler_arm32_test.cc
+++ b/compiler/utils/arm/assembler_arm32_test.cc
@@ -49,7 +49,7 @@
}
std::string GetAssemblerParameters() OVERRIDE {
- return " -march=armv7ve"; // Arm-v7a with virtualization extension (means we have sdiv).
+ return " -march=armv7-a -mcpu=cortex-a15"; // Arm-v7a, cortex-a15 (means we have sdiv).
}
const char* GetAssemblyHeader() OVERRIDE {