diff options
author | 2013-02-27 14:30:44 -0800 | |
---|---|---|
committer | 2013-02-27 14:30:44 -0800 | |
commit | c928de90ad22ecdf83c18a07008409595f13d3b1 (patch) | |
tree | 065a08f379960f7ba946318aaa742d7ddd0c94bd /src/exception_test.cc | |
parent | 0f827169742aad6209d830db773a101849c32a83 (diff) |
Remove Iceland.
ART_USE_LLVM_COMPILER is removed and when necessary ART_USE_PORTABLE_COMPILER
is used in #ifdefs.
Change-Id: Iffa9ce5b0246c7c427ccc4e67ecc134624632e55
Diffstat (limited to 'src/exception_test.cc')
-rw-r--r-- | src/exception_test.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/exception_test.cc b/src/exception_test.cc index 240bf957db..1d32f1bb6a 100644 --- a/src/exception_test.cc +++ b/src/exception_test.cc @@ -145,7 +145,7 @@ TEST_F(ExceptionTest, StackTraceElement) { ASSERT_EQ(kStackAlignment, 16); ASSERT_EQ(sizeof(uintptr_t), sizeof(uint32_t)); -#if !defined(ART_USE_LLVM_COMPILER) +#if !defined(ART_USE_PORTABLE_COMPILER) // Create two fake stack frames with mapping data created in SetUp. We map offset 3 in the code // to dex pc 3. const uint32_t dex_pc = 3; @@ -213,7 +213,7 @@ TEST_F(ExceptionTest, StackTraceElement) { EXPECT_STREQ("f", trace_array->Get(1)->GetMethodName()->ToModifiedUtf8().c_str()); EXPECT_EQ(22, trace_array->Get(1)->GetLineNumber()); -#if !defined(ART_USE_LLVM_COMPILER) +#if !defined(ART_USE_PORTABLE_COMPILER) thread->SetTopOfStack(NULL, 0); // Disarm the assertion that no code is running when we detach. #else thread->PopShadowFrame(); |