Chromium Code Reviews| Index: runtime/vm/flow_graph_optimizer.h |
| =================================================================== |
| --- runtime/vm/flow_graph_optimizer.h (revision 13809) |
| +++ runtime/vm/flow_graph_optimizer.h (working copy) |
| @@ -155,10 +155,10 @@ |
| // on the dominator tree. |
| class DominatorBasedCSE : public AllStatic { |
| public: |
| - static void Optimize(FlowGraph* graph); |
| + static bool Optimize(FlowGraph* graph); |
|
srdjan
2012/10/19 14:45:50
Describe in comment what result true/false means
Florian Schneider
2012/10/22 10:31:55
Done.
|
| private: |
| - static void OptimizeRecursive( |
| + static bool OptimizeRecursive( |
| BlockEntryInstr* entry, |
| DirectChainedHashMap<Instruction*>* map); |
| }; |