C99 feature removed
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Mon, 25 Jun 2007 21:02:10 +0000 (21:02 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Mon, 25 Jun 2007 21:02:10 +0000 (21:02 +0000)
[r14754]

ir/be/ia32/ia32_x87.c

index 79a2b06..b2ad8de 100644 (file)
@@ -2010,7 +2010,7 @@ static x87_state *x87_kill_deads(x87_simulator *sim, ir_node *block, x87_state *
 static void fix_unknown_phis(x87_state *state, ir_node *block,
                              ir_node *pred_block, int pos)
 {
-       ir_node *node;
+       ir_node *node, *op;
 
        sched_foreach(block, node) {
                ir_node               *zero;
@@ -2020,7 +2020,7 @@ static void fix_unknown_phis(x87_state *state, ir_node *block,
                if(!is_Phi(node))
                        break;
 
-               ir_node *op = get_Phi_pred(node, pos);
+               op = get_Phi_pred(node, pos);
                if(!is_ia32_Unknown_VFP(op))
                        continue;