| Index: runtime/vm/flow_graph_builder.cc
|
| diff --git a/runtime/vm/flow_graph_builder.cc b/runtime/vm/flow_graph_builder.cc
|
| index 9bbd9e083764eb564c0cd36bf693eccea4db1e20..f221e19c52f0524387e91f647c878f66bab67ae7 100644
|
| --- a/runtime/vm/flow_graph_builder.cc
|
| +++ b/runtime/vm/flow_graph_builder.cc
|
| @@ -489,7 +489,7 @@ Definition* InlineExitCollector::JoinReturns(BlockEntryInstr** exit_block,
|
| if (call_->HasUses()) {
|
| // Add a phi of the return values.
|
| PhiInstr* phi = new(Z) PhiInstr(join, num_exits);
|
| - phi->set_ssa_temp_index(caller_graph_->alloc_ssa_temp_index());
|
| + caller_graph_->AllocateSSAIndexes(phi);
|
| phi->mark_alive();
|
| for (intptr_t i = 0; i < num_exits; ++i) {
|
| ReturnAt(i)->RemoveEnvironment();
|
|
|