From 04d455ab69c9d1549305ccbd6f97eb802db91ff4 Mon Sep 17 00:00:00 2001 From: Matthias Braun Date: Thu, 9 Aug 2012 18:40:40 +0200 Subject: [PATCH] fix bug introduced in 'cleanup' commit --- ir/ir/iropt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ir/ir/iropt.c b/ir/ir/iropt.c index c5291cbf9..5ff0f84ff 100644 --- a/ir/ir/iropt.c +++ b/ir/ir/iropt.c @@ -5130,7 +5130,7 @@ static ir_node *transform_node_Phi(ir_node *phi) /* Beware of Phi0 */ if (n > 0) { ir_node *pred = get_irn_n(phi, 0); - ir_node *bound, *new_phi, *block, **in; + ir_node *bound, *new_phi, **in; ir_relation relation; bool has_confirm = false; -- 2.20.1