Fixed initialization of option tables
[libfirm] / ir / opt / convopt.c
index 433c6a5..11631c4 100644 (file)
@@ -165,7 +165,8 @@ int is_downconv(ir_mode *src_mode, ir_mode *dest_mode)
                get_mode_size_bits(dest_mode) < get_mode_size_bits(src_mode);
 }
 
-/* TODO, backends can't handle and it's probably not more efficient on most
+/* TODO, backends (at least ia23) can't handle it at the moment,
+   and it's probably not more efficient on most
    archs */
 #if 0
 static
@@ -219,6 +220,7 @@ void conv_opt_walker(ir_node *node, void *data)
 
 void conv_opt(ir_graph *irg)
 {
+       char invalidate = 0;
        FIRM_DBG_REGISTER(dbg, "firm.opt.conv");
 
        DB((dbg, LEVEL_1, "===> Performing conversion optimization on %+F\n", irg));
@@ -228,5 +230,10 @@ void conv_opt(ir_graph *irg)
                changed = 0;
                irg_walk_graph(irg, NULL, conv_opt_walker, NULL);
                local_optimize_graph(irg);
+               invalidate |= changed;
        } while (changed);
+
+       if (invalidate) {
+               set_irg_outs_inconsistent(irg);
+       }
 }