| Index: runtime/vm/flow_graph_compiler.cc
|
| diff --git a/runtime/vm/flow_graph_compiler.cc b/runtime/vm/flow_graph_compiler.cc
|
| index e7f063cfa9955cb1c0a5ebbef2c55ef0752a47cb..544ee9d2ca122d66b675b87d8dc04ffaf3de0fda 100644
|
| --- a/runtime/vm/flow_graph_compiler.cc
|
| +++ b/runtime/vm/flow_graph_compiler.cc
|
| @@ -64,12 +64,12 @@ void CompilerDeoptInfo::EmitMaterializations(Environment* env,
|
|
|
|
|
| FlowGraphCompiler::FlowGraphCompiler(Assembler* assembler,
|
| - const FlowGraph& flow_graph,
|
| + FlowGraph* flow_graph,
|
| bool is_optimizing)
|
| : assembler_(assembler),
|
| - parsed_function_(flow_graph.parsed_function()),
|
| - flow_graph_(flow_graph),
|
| - block_order_(flow_graph.reverse_postorder()),
|
| + parsed_function_(flow_graph->parsed_function()),
|
| + flow_graph_(*flow_graph),
|
| + block_order_(*flow_graph->codegen_block_order(is_optimizing)),
|
| current_block_(NULL),
|
| exception_handlers_list_(NULL),
|
| pc_descriptors_list_(NULL),
|
|
|