| Index: runtime/vm/flow_graph.h
|
| diff --git a/runtime/vm/flow_graph.h b/runtime/vm/flow_graph.h
|
| index db384d0f337eacb87c0d4547e086dac4e04a8dca..517a9ebce26ffea5a4fb5b7e597a9c836290b551 100644
|
| --- a/runtime/vm/flow_graph.h
|
| +++ b/runtime/vm/flow_graph.h
|
| @@ -82,7 +82,8 @@ class FlowGraph : public ZoneAllocated {
|
| const GrowableArray<BlockEntryInstr*>& reverse_postorder() const {
|
| return reverse_postorder_;
|
| }
|
| - GrowableArray<BlockEntryInstr*>* codegen_block_order(bool is_optimized);
|
| + static bool ShouldReorderBlocks(const Function& function, bool is_optimized);
|
| + GrowableArray<BlockEntryInstr*>* CodegenBlockOrder(bool is_optimized);
|
|
|
| // Iterators.
|
| BlockIterator reverse_postorder_iterator() const {
|
|
|