diff options
author | 2013-08-27 17:31:03 -0700 | |
---|---|---|
committer | 2013-10-28 00:06:03 -0700 | |
commit | ba150c37d582eeeb8c11ba5245edc281cf31793c (patch) | |
tree | ca12cf82602e4b78b2a6ca463e9d0e35fc5e3ff6 /runtime/exception_test.cc | |
parent | 3c2a6e2468e3e519ade6c3cfcaad7cd34243cdf1 (diff) |
Omit OatMethodOffsets for classes without compiled code
Change-Id: If0d290f4aebc778ff12d8fed017c270ad2ac3220
Diffstat (limited to 'runtime/exception_test.cc')
-rw-r--r-- | runtime/exception_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/exception_test.cc b/runtime/exception_test.cc index 2e6b0a8f56..a5f999784d 100644 --- a/runtime/exception_test.cc +++ b/runtime/exception_test.cc @@ -146,7 +146,7 @@ TEST_F(ExceptionTest, StackTraceElement) { ScopedObjectAccess soa(env); std::vector<uintptr_t> fake_stack; - ASSERT_EQ(kStackAlignment, 16); + ASSERT_EQ(kStackAlignment, 16U); ASSERT_EQ(sizeof(uintptr_t), sizeof(uint32_t)); #if !defined(ART_USE_PORTABLE_COMPILER) |