summaryrefslogtreecommitdiffstats
path: root/compiler/optimizing/codegen_test.cc
diff options
context:
space:
mode:
authorNicolas Geoffray <ngeoffray@google.com>2014-06-25 14:35:34 +0100
committerNicolas Geoffray <ngeoffray@google.com>2014-06-25 14:35:34 +0100
commit20550910e608ed7d86db97927d2ce9d2191061a4 (patch)
tree685b5ede42c3583c0152f784567026b1afc8e55d /compiler/optimizing/codegen_test.cc
parentae43e2b11cc5af5b632700a9e4e4d9ed436b24dc (diff)
downloadart-20550910e608ed7d86db97927d2ce9d2191061a4.tar.gz
art-20550910e608ed7d86db97927d2ce9d2191061a4.tar.bz2
art-20550910e608ed7d86db97927d2ce9d2191061a4.zip
Re-enable tests with the optimizing compiler.
Tests run ok on my host/target. I reverted the move to using thumb2, because tests were crashing. But I could not reproduce file limits issues. Change-Id: I26bc4ec1eb6c227750d11210e012d9d3b1d824af
Diffstat (limited to 'compiler/optimizing/codegen_test.cc')
-rw-r--r--compiler/optimizing/codegen_test.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/compiler/optimizing/codegen_test.cc b/compiler/optimizing/codegen_test.cc
index fd534ced1f..7ec0c84167 100644
--- a/compiler/optimizing/codegen_test.cc
+++ b/compiler/optimizing/codegen_test.cc
@@ -52,10 +52,6 @@ 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);