Use dex_pc instead of line_number.
Change-Id: I3759319562428bccabccc66d7afd691682ecca55
diff --git a/src/exception_test.cc b/src/exception_test.cc
index 4d4ffd4..23a437a 100644
--- a/src/exception_test.cc
+++ b/src/exception_test.cc
@@ -146,15 +146,14 @@
fake_stack.push_back(0);
fake_stack.push_back(0);
fake_stack.push_back(reinterpret_cast<uintptr_t>(method_g_));
- // LLVM compiler will do this in the MethodCompiler
- fake_stack.push_back(dex_->GetLineNumFromPC(method_g_, 3));
+ fake_stack.push_back(3);
fake_stack.push_back(0);
// Create/push fake 20-byte shadow frame for method f
fake_stack.push_back(0);
fake_stack.push_back(0);
fake_stack.push_back(reinterpret_cast<uintptr_t>(method_f_));
- fake_stack.push_back(dex_->GetLineNumFromPC(method_f_, 3));
+ fake_stack.push_back(3);
fake_stack.push_back(0);
Thread* thread = Thread::Current();