diff options
Diffstat (limited to 'runtime/quick_exception_handler.cc')
-rw-r--r-- | runtime/quick_exception_handler.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/quick_exception_handler.cc b/runtime/quick_exception_handler.cc index 8029c03315..82f50346e2 100644 --- a/runtime/quick_exception_handler.cc +++ b/runtime/quick_exception_handler.cc @@ -422,7 +422,7 @@ class DeoptimizeStackVisitor final : public StackVisitor { CodeItemDataAccessor accessor(method->DexInstructionData()); const size_t num_regs = accessor.RegistersSize(); if (new_frame == nullptr) { - new_frame = ShadowFrame::CreateDeoptimizedFrame(num_regs, nullptr, method, GetDexPc()); + new_frame = ShadowFrame::CreateDeoptimizedFrame(num_regs, method, GetDexPc()); updated_vregs = nullptr; } else { updated_vregs = GetThread()->GetUpdatedVRegFlags(frame_id); |