summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Andreas Gampe <agampe@google.com> 2016-08-02 08:44:20 -0700
committer Andreas Gampe <agampe@google.com> 2016-08-02 08:45:00 -0700
commitd993327afa51a9ac216da0e5a5eba455aa79a6c9 (patch)
treed3da5e9bc5f30b7cfbac1c0783a46ac2c2eeb399
parentc984725d0035e1925371757c38fed339b409e525 (diff)
ART: Fix Mips Thread offset checks
Follow-up to commit 542451cc546779f5c67840e105c51205a1b0a8fd. Bug: 30373134 Test: m test-art-host Change-Id: I1d0202896e683cb20db30e8aac1c5ebcacc96467
-rw-r--r--runtime/arch/mips/thread_mips.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/arch/mips/thread_mips.cc b/runtime/arch/mips/thread_mips.cc
index 06d6211c88..0a9ab7aacd 100644
--- a/runtime/arch/mips/thread_mips.cc
+++ b/runtime/arch/mips/thread_mips.cc
@@ -25,7 +25,7 @@ namespace art {
void Thread::InitCpu() {
CHECK_EQ(THREAD_FLAGS_OFFSET, ThreadFlagsOffset<PointerSize::k32>().Int32Value());
CHECK_EQ(THREAD_CARD_TABLE_OFFSET, CardTableOffset<PointerSize::k32>().Int32Value());
- CHECK_EQ(THREAD_EXCEPTION_OFFSET, ExceptionOffset<PointerSize::k64>().Int32Value());
+ CHECK_EQ(THREAD_EXCEPTION_OFFSET, ExceptionOffset<PointerSize::k32>().Int32Value());
}
void Thread::CleanupCpu() {