From: Matthias Braun Date: Sat, 16 Feb 2008 11:56:26 +0000 (+0000) Subject: fix compile error in bespillremat X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=b5c68eabf2e758e5ecb07924b0d8571aa9d9538c;p=libfirm fix compile error in bespillremat [r17748] --- diff --git a/ir/be/bespillremat.c b/ir/be/bespillremat.c index ee7ea9b1d..373022af3 100644 --- a/ir/be/bespillremat.c +++ b/ir/be/bespillremat.c @@ -3601,7 +3601,7 @@ new_r_PhiM_nokeep(ir_graph * irg, ir_node *block, int arity, ir_node **in) assert( get_irn_arity(block) == arity ); res = new_ir_node(NULL, irg, block, op_Phi, mode_M, arity, in); - res->attr.phi_backedge = new_backedge_arr(irg->obst, arity); + res->attr.phi.u.backedge = new_backedge_arr(irg->obst, arity); return res; }