| Index: runtime/vm/compiler.cc
|
| diff --git a/runtime/vm/compiler.cc b/runtime/vm/compiler.cc
|
| index 13cbfc0c6850fee5284a6e4a4e9a71210409c7f5..c4c73f26da97c7b6f85f072724e82392f910635f 100644
|
| --- a/runtime/vm/compiler.cc
|
| +++ b/runtime/vm/compiler.cc
|
| @@ -151,7 +151,8 @@ static bool CompileParsedFunctionHelper(const ParsedFunction& parsed_function,
|
|
|
| // Build the flow graph.
|
| FlowGraphBuilder builder(parsed_function);
|
| - flow_graph = builder.BuildGraph(FlowGraphBuilder::kNotInlining);
|
| + flow_graph = builder.BuildGraph(FlowGraphBuilder::kNotInlining,
|
| + 0); // The initial loop depth is zero.
|
| }
|
|
|
| if (optimized) {
|
|
|