| Index: runtime/vm/flow_graph_builder.cc
|
| diff --git a/runtime/vm/flow_graph_builder.cc b/runtime/vm/flow_graph_builder.cc
|
| index 8bcba377b00fe35d4d191fabf54db985e9c789b1..33fad69afca7109c49c68967186f8a48629d4fd8 100644
|
| --- a/runtime/vm/flow_graph_builder.cc
|
| +++ b/runtime/vm/flow_graph_builder.cc
|
| @@ -205,10 +205,7 @@ void ValueInliningContext::ReplaceCall(FlowGraph* caller_graph,
|
| phi->set_ssa_temp_index(caller_graph->alloc_ssa_temp_index());
|
| phi->mark_alive();
|
| for (intptr_t i = 0; i < num_exits; ++i) {
|
| - Value* value = ValueAt(i);
|
| - phi->SetInputAt(i, value);
|
| - value->set_instruction(phi);
|
| - value->set_use_index(i);
|
| + phi->SetInputAt(i, ValueAt(i));
|
| }
|
| // Replace uses of the call with the phi.
|
| call->ReplaceUsesWith(phi);
|
|
|