| Index: runtime/vm/compiler.cc
|
| ===================================================================
|
| --- runtime/vm/compiler.cc (revision 37169)
|
| +++ runtime/vm/compiler.cc (working copy)
|
| @@ -479,6 +479,7 @@
|
| optimizer.EliminateEnvironments();
|
|
|
| DeadCodeElimination::EliminateDeadPhis(flow_graph);
|
| + DEBUG_ASSERT(flow_graph->VerifyUseLists());
|
|
|
| // Attempt to sink allocations of temporary non-escaping objects to
|
| // the deoptimization path.
|
| @@ -489,6 +490,7 @@
|
| sinking = new AllocationSinking(flow_graph);
|
| sinking->Optimize();
|
| }
|
| + DEBUG_ASSERT(flow_graph->VerifyUseLists());
|
|
|
| // Ensure that all phis inserted by optimization passes have consistent
|
| // representations.
|
|
|