even more warning fixes
[libfirm] / ir / opt / loop_unrolling.c
index dff83ef..97c3817 100644 (file)
@@ -947,13 +947,12 @@ void optimize_loop_unrolling(ir_graph *irg /* unroll factor, max body size */)
   compute_loop_info(irg);
   /* Call algorithm that computes the backedges */
   // construct_cf_backedges(irg);
-  dump_loop_tree(current_ir_graph, "-deadlooptree");
 
   /* Call algorithm that computes the dominator trees. */
-  compute_doms(irg);
+  assure_doms(irg);
 
   /* Call algorithm that computes the out edges */
-  compute_irg_outs(irg);
+  assure_irg_outs(irg);
 
   collect_phiprojs(irg);
 
@@ -962,7 +961,7 @@ void optimize_loop_unrolling(ir_graph *irg /* unroll factor, max body size */)
 
   if (unroll_done) {
     /* unrolling was done, all info is invalid */
-    set_irg_dom_inconsistent(irg);
+    set_irg_doms_inconsistent(irg);
     set_irg_outs_inconsistent(irg);
     set_irg_loopinfo_state(current_ir_graph, loopinfo_cf_inconsistent);
     set_trouts_inconsistent();