fixed const mismatch
[libfirm] / ir / opt / loop_unrolling.c
index dff83ef..851461d 100644 (file)
@@ -947,7 +947,6 @@ 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);
@@ -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();