| Index: runtime/vm/compiler.cc
|
| diff --git a/runtime/vm/compiler.cc b/runtime/vm/compiler.cc
|
| index 36b94b24dcea3580ae847f90bc52726fe579f77b..b10be0dbacfc25f946b907e248bb05d650f829e7 100644
|
| --- a/runtime/vm/compiler.cc
|
| +++ b/runtime/vm/compiler.cc
|
| @@ -806,7 +806,7 @@ RawCode* CompileParsedFunctionHelper::Compile(CompilationPipeline* pipeline) {
|
| "ComputeSSA"));
|
| CSTAT_TIMER_SCOPE(thread(), ssa_timer);
|
| // Transform to SSA (virtual register 0 and no inlining arguments).
|
| - flow_graph->ComputeSSA(0, NULL);
|
| + flow_graph->ComputeSSA(0, NULL, NULL);
|
| DEBUG_ASSERT(flow_graph->VerifyUseLists());
|
| if (print_flow_graph) {
|
| FlowGraphPrinter::PrintGraph("After SSA", flow_graph);
|
|
|