| Index: runtime/vm/flow_graph_builder.h
|
| diff --git a/runtime/vm/flow_graph_builder.h b/runtime/vm/flow_graph_builder.h
|
| index df32ae7bfe32ba3281a451798b463ca89324274a..84ac159f5ffebd82e8ccaa503e5170836d011d15 100644
|
| --- a/runtime/vm/flow_graph_builder.h
|
| +++ b/runtime/vm/flow_graph_builder.h
|
| @@ -21,7 +21,7 @@ class FlowGraphBuilder: public ValueObject {
|
| explicit FlowGraphBuilder(const ParsedFunction& parsed_function)
|
| : parsed_function_(parsed_function),
|
| bailout_reason_(NULL),
|
| - postorder_() { }
|
| + postorder_block_entries_() { }
|
|
|
| void BuildGraph();
|
|
|
| @@ -39,7 +39,7 @@ class FlowGraphBuilder: public ValueObject {
|
| private:
|
| const ParsedFunction& parsed_function_;
|
| const char* bailout_reason_;
|
| - GrowableArray<Instruction*> postorder_;
|
| + GrowableArray<Instruction*> postorder_block_entries_;
|
| };
|
|
|
|
|
|
|