| Index: runtime/vm/compiler.cc
|
| diff --git a/runtime/vm/compiler.cc b/runtime/vm/compiler.cc
|
| index 91eda5f1383052abc122723a185daabcb9d1e3e8..01da2c52fffd4f1b6802210bdfb25a9f8b32da39 100644
|
| --- a/runtime/vm/compiler.cc
|
| +++ b/runtime/vm/compiler.cc
|
| @@ -163,10 +163,10 @@ static bool CompileParsedFunctionHelper(const ParsedFunction& parsed_function,
|
|
|
| // Build the flow graph.
|
| FlowGraphBuilder builder(parsed_function);
|
| - flow_graph = builder.BuildGraph();
|
| + flow_graph = builder.BuildGraph(FlowGraphBuilder::kNotInlining);
|
|
|
| // Transform to SSA.
|
| - if (optimized) flow_graph->ComputeSSA();
|
| + if (optimized) flow_graph->ComputeSSA(0); // Start at virtual register 0.
|
|
|
| if (FLAG_print_flow_graph) {
|
| OS::Print("Before Optimizations\n");
|
|
|