summaryrefslogtreecommitdiffstats
path: root/compiler/utils
diff options
context:
space:
mode:
authorAndreas Gampe <agampe@google.com>2014-11-20 17:01:10 -0800
committerAndreas Gampe <agampe@google.com>2014-11-20 17:01:10 -0800
commit8205c7712922bcd90d57bf9e0776010e6db6e47b (patch)
tree3a183822003882eb03a0655864e3845fc56dea55 /compiler/utils
parent7da7fe0a1c4dc435347a1756836b418ce905f407 (diff)
downloadart-8205c7712922bcd90d57bf9e0776010e6db6e47b.zip
art-8205c7712922bcd90d57bf9e0776010e6db6e47b.tar.gz
art-8205c7712922bcd90d57bf9e0776010e6db6e47b.tar.bz2
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
Diffstat (limited to 'compiler/utils')
-rw-r--r--compiler/utils/arm/assembler_arm32_test.cc2
1 files changed, 1 insertions, 1 deletions
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 @@ class AssemblerArm32Test : public AssemblerArmTest<arm::Arm32Assembler,
}
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 {