Chromium Code Reviews| Index: runtime/vm/flow_graph_type_propagator.cc |
| =================================================================== |
| --- runtime/vm/flow_graph_type_propagator.cc (revision 28924) |
| +++ runtime/vm/flow_graph_type_propagator.cc (working copy) |
| @@ -18,6 +18,13 @@ |
| DECLARE_FLAG(bool, use_cha); |
| +void FlowGraphTypePropagator::Propagate(FlowGraph* flow_graph) { |
| + FlowGraphTypePropagator propagator(flow_graph); |
| + propagator.Propagate(); |
| + DEBUG_ASSERT(flow_graph->VerifyUseLists()); |
|
Kevin Millikin (Google)
2013/10/21 13:05:23
Except for a couple instances during inlining, all
Florian Schneider
2013/10/21 13:30:04
Done.
|
| +} |
| + |
| + |
| FlowGraphTypePropagator::FlowGraphTypePropagator(FlowGraph* flow_graph) |
| : FlowGraphVisitor(flow_graph->reverse_postorder()), |
| flow_graph_(flow_graph), |