diff options
author | Nicolas Geoffray <ngeoffray@google.com> | 2014-06-25 14:35:34 +0100 |
---|---|---|
committer | Nicolas Geoffray <ngeoffray@google.com> | 2014-06-26 09:27:37 +0100 |
commit | f61b5377068f22c0be7b2f6e62961e620408beb2 (patch) | |
tree | 15971fe1cf0797fa0b8ac0507b1a88c206f6c22e /compiler/optimizing/codegen_test.cc | |
parent | fe6bfba3153ab55dab3ec0d644d628136e5ff0a4 (diff) |
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.
Make SignalTest as crashing for optimizing. We need to implement
stack overflow checks.
Change-Id: Ieda575501eaf30af7aaa2c44e71544c9c467c24f
Diffstat (limited to 'compiler/optimizing/codegen_test.cc')
-rw-r--r-- | compiler/optimizing/codegen_test.cc | 4 |
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); |