C99 feature removed
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Wed, 31 Aug 2005 09:25:48 +0000 (09:25 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Wed, 31 Aug 2005 09:25:48 +0000 (09:25 +0000)
[r6539]

ir/ir/irgopt.c

index 0ec7ad2..3e94763 100644 (file)
@@ -1716,6 +1716,7 @@ place_floats_late(ir_node *n, pdeq *worklist)
                    placement has to dominate DCA. */
       for (i = get_irn_n_outs(n) - 1; i >= 0; --i) {
         ir_node *out = get_irn_out(n, i);
+        ir_node *outbl;
 
         if (get_irn_op(out) == op_End) {
           /*
@@ -1726,7 +1727,7 @@ place_floats_late(ir_node *n, pdeq *worklist)
         }
 
         /* ignore if out is in dead code */
-        ir_node *outbl = get_irn_n(out, -1);
+        outbl = get_irn_n(out, -1);
         if (is_Block_unreachable(outbl))
           continue;
         dca = consumer_dom_dca(dca, out, n);