| Index: runtime/vm/compiler.cc
|
| ===================================================================
|
| --- runtime/vm/compiler.cc (revision 13457)
|
| +++ runtime/vm/compiler.cc (working copy)
|
| @@ -244,17 +244,10 @@
|
| }
|
| }
|
|
|
| - bool is_leaf = false;
|
| - if (optimized) {
|
| - FlowGraphAnalyzer analyzer(*flow_graph);
|
| - analyzer.Analyze();
|
| - is_leaf = analyzer.is_leaf();
|
| - }
|
| Assembler assembler;
|
| FlowGraphCompiler graph_compiler(&assembler,
|
| *flow_graph,
|
| - optimized,
|
| - is_leaf);
|
| + optimized);
|
| {
|
| TimerScope timer(FLAG_compiler_stats,
|
| &CompilerStats::graphcompiler_timer,
|
|
|