| Index: runtime/vm/flow_graph_compiler_mips.cc
|
| diff --git a/runtime/vm/flow_graph_compiler_mips.cc b/runtime/vm/flow_graph_compiler_mips.cc
|
| index 8e510511a19a556814956651443c86bc18100451..03b0a9aeb27355517df16b188781a06baf80f76e 100644
|
| --- a/runtime/vm/flow_graph_compiler_mips.cc
|
| +++ b/runtime/vm/flow_graph_compiler_mips.cc
|
| @@ -44,7 +44,8 @@ bool FlowGraphCompiler::SupportsUnboxedMints() {
|
|
|
|
|
| RawDeoptInfo* CompilerDeoptInfo::CreateDeoptInfo(FlowGraphCompiler* compiler,
|
| - DeoptInfoBuilder* builder) {
|
| + DeoptInfoBuilder* builder,
|
| + const Array& deopt_table) {
|
| if (deopt_env_ == NULL) return DeoptInfo::null();
|
|
|
| intptr_t stack_height = compiler->StackSize();
|
| @@ -133,7 +134,8 @@ RawDeoptInfo* CompilerDeoptInfo::CreateDeoptInfo(FlowGraphCompiler* compiler,
|
| builder->AddCopy(previous->ValueAt(i), previous->LocationAt(i), slot_ix++);
|
| }
|
|
|
| - const DeoptInfo& deopt_info = DeoptInfo::Handle(builder->CreateDeoptInfo());
|
| + const DeoptInfo& deopt_info =
|
| + DeoptInfo::Handle(builder->CreateDeoptInfo(deopt_table));
|
| return deopt_info.raw();
|
| }
|
|
|
|
|