summaryrefslogtreecommitdiffstats
path: root/compiler/optimizing/codegen_test.cc
diff options
context:
space:
mode:
authorNicolas Geoffray <ngeoffray@google.com>2014-06-25 14:15:06 +0000
committerNicolas Geoffray <ngeoffray@google.com>2014-06-25 14:15:06 +0000
commite61fd353c06f51f1b8ca5af69997d0185b7659b2 (patch)
tree984d0609bf71e7705117e19eb836ddf203be6d01 /compiler/optimizing/codegen_test.cc
parent20550910e608ed7d86db97927d2ce9d2191061a4 (diff)
downloadart-e61fd353c06f51f1b8ca5af69997d0185b7659b2.zip
art-e61fd353c06f51f1b8ca5af69997d0185b7659b2.tar.gz
art-e61fd353c06f51f1b8ca5af69997d0185b7659b2.tar.bz2
Revert "Re-enable tests with the optimizing compiler."
This reverts commit 20550910e608ed7d86db97927d2ce9d2191061a4. Change-Id: Ic28b719946c795378838a18162a2a2b2cf41a0e8
Diffstat (limited to 'compiler/optimizing/codegen_test.cc')
-rw-r--r--compiler/optimizing/codegen_test.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/compiler/optimizing/codegen_test.cc b/compiler/optimizing/codegen_test.cc
index 7ec0c84..fd534ce 100644
--- a/compiler/optimizing/codegen_test.cc
+++ b/compiler/optimizing/codegen_test.cc
@@ -52,6 +52,10 @@ static void Run(const InternalCodeAllocator& allocator, bool has_result, int32_t
typedef int32_t (*fptr)();
CommonCompilerTest::MakeExecutable(allocator.GetMemory(), allocator.GetSize());
fptr f = reinterpret_cast<fptr>(allocator.GetMemory());
+#if defined(__arm__)
+ // For thumb we need the bottom bit set.
+ f = reinterpret_cast<fptr>(reinterpret_cast<uintptr_t>(f) + 1);
+#endif
int32_t result = f();
if (has_result) {
CHECK_EQ(result, expected);