From d2e398dfc83188c4a94e191d51689ab56e0991a0 Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Thu, 25 Nov 2004 22:31:09 +0000 Subject: tree-phinodes.c (add_phi_arg): Take "tree" instead of "tree *" as the first argument. * tree-phinodes.c (add_phi_arg): Take "tree" instead of "tree *" as the first argument. * tree-flow.h: Update the prototype of add_phi_arg. * lambda-code.c, tree-cfg.c, tree-into-ssa.c, tree-ssa-loop-ivopts.c, tree-ssa-loop-manip.c, tree-ssa-pre.c, tree-ssa-threadupdate.c, tree-ssa.c, tree-tailcall.c, tree-vectorizer.c: Update all call sites of add_phi_arg. From-SVN: r91307 --- gcc/tree-ssa-pre.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/tree-ssa-pre.c') diff --git a/gcc/tree-ssa-pre.c b/gcc/tree-ssa-pre.c index cbf43c4..7cffc56 100644 --- a/gcc/tree-ssa-pre.c +++ b/gcc/tree-ssa-pre.c @@ -1555,7 +1555,7 @@ insert_aux (basic_block block) PHI_RESULT (temp)); FOR_EACH_EDGE (pred, ei, block->preds) { - add_phi_arg (&temp, avail[pred->src->index], + add_phi_arg (temp, avail[pred->src->index], pred); } if (dump_file && (dump_flags & TDF_DETAILS)) -- cgit v1.1