diff options
Diffstat (limited to 'runtime/stack.cc')
-rw-r--r-- | runtime/stack.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/stack.cc b/runtime/stack.cc index a181bfe091..2fb8c413e9 100644 --- a/runtime/stack.cc +++ b/runtime/stack.cc @@ -856,7 +856,7 @@ void StackVisitor::WalkStack(bool include_transitions) { if (reinterpret_cast<uintptr_t>(GetQuickInstrumentationExitPc()) == return_pc) { CHECK_LT(instrumentation_stack_depth, thread_->GetInstrumentationStack()->size()); const instrumentation::InstrumentationStackFrame& instrumentation_frame = - thread_->GetInstrumentationStack()->at(instrumentation_stack_depth); + (*thread_->GetInstrumentationStack())[instrumentation_stack_depth]; instrumentation_stack_depth++; if (GetMethod() == Runtime::Current()->GetCalleeSaveMethod(CalleeSaveType::kSaveAllCalleeSaves)) { |