Chromium Code Reviews| Index: vm/flow_graph_builder.h |
| =================================================================== |
| --- vm/flow_graph_builder.h (revision 7699) |
| +++ vm/flow_graph_builder.h (working copy) |
| @@ -24,10 +24,14 @@ |
| const ParsedFunction& parsed_function() const { return parsed_function_; } |
| - const GrowableArray<BlockEntryInstr*>& postorder_block_entries() const { |
| - return postorder_block_entries_; |
| + GrowableArray<BlockEntryInstr*>* postorder_block_entries() { |
| + return &postorder_block_entries_; |
|
srdjan
2012/05/17 22:59:22
Why not const reference result (and make the gette
Florian Schneider
2012/05/18 00:28:38
Done.
|
| } |
| + GrowableArray<BlockEntryInstr*>* preorder_block_entries() { |
| + return &preorder_block_entries_; |
| + } |
| + |
| void Bailout(const char* reason); |
| void set_context_level(intptr_t value) { context_level_ = value; } |