diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-11-25 22:31:09 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-11-25 22:31:09 +0000 |
commit | d2e398dfc83188c4a94e191d51689ab56e0991a0 (patch) | |
tree | 66c8df427757e768c2a5be03b5940cc14259184e /gcc/tree-vectorizer.c | |
parent | 9f8e747867f0b4824c02c7745491b8ef2110b814 (diff) | |
download | gcc-d2e398dfc83188c4a94e191d51689ab56e0991a0.zip gcc-d2e398dfc83188c4a94e191d51689ab56e0991a0.tar.gz gcc-d2e398dfc83188c4a94e191d51689ab56e0991a0.tar.bz2 |
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
Diffstat (limited to 'gcc/tree-vectorizer.c')
-rw-r--r-- | gcc/tree-vectorizer.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gcc/tree-vectorizer.c b/gcc/tree-vectorizer.c index 8853e88..5773993 100644 --- a/gcc/tree-vectorizer.c +++ b/gcc/tree-vectorizer.c @@ -504,7 +504,7 @@ slpeel_update_phis_for_duplicate_loop (struct loop *orig_loop, { /* step 1. */ def = PHI_ARG_DEF_FROM_EDGE (phi_orig, entry_arg_e); - add_phi_arg (&phi_new, def, new_loop_entry_e); + add_phi_arg (phi_new, def, new_loop_entry_e); /* step 2. */ def = PHI_ARG_DEF_FROM_EDGE (phi_orig, orig_loop_latch); @@ -518,7 +518,7 @@ slpeel_update_phis_for_duplicate_loop (struct loop *orig_loop, /* An ordinary ssa name defined in the loop. */ new_ssa_name = *new_name_ptr; - add_phi_arg (&phi_new, new_ssa_name, loop_latch_edge (new_loop)); + add_phi_arg (phi_new, new_ssa_name, loop_latch_edge (new_loop)); /* step 3 (case 1). */ if (!after) @@ -635,8 +635,8 @@ slpeel_update_phi_nodes_for_guard (edge guard_edge, loop_arg = orig_def; } } - add_phi_arg (&new_phi, loop_arg, loop->exit_edges[0]); - add_phi_arg (&new_phi, guard_arg, guard_edge); + add_phi_arg (new_phi, loop_arg, loop->exit_edges[0]); + add_phi_arg (new_phi, guard_arg, guard_edge); /* 3. Update phi in successor block. */ gcc_assert (PHI_ARG_DEF_FROM_EDGE (update_phi, e) == loop_arg @@ -763,7 +763,7 @@ slpeel_tree_duplicate_loop_to_edge_cfg (struct loop *loop, struct loops *loops, else new_loop_exit_edge = EDGE_SUCC (new_loop->header, 0); - add_phi_arg (&phi, phi_arg, new_loop_exit_edge); + add_phi_arg (phi, phi_arg, new_loop_exit_edge); } } @@ -796,7 +796,7 @@ slpeel_tree_duplicate_loop_to_edge_cfg (struct loop *loop, struct loops *loops, { phi_arg = PHI_ARG_DEF_FROM_EDGE (phi, entry_e); if (phi_arg) - add_phi_arg (&phi, phi_arg, new_exit_e); + add_phi_arg (phi, phi_arg, new_exit_e); } redirect_edge_and_branch_force (entry_e, new_loop->header); @@ -2646,8 +2646,8 @@ vectorizable_load (tree stmt, block_stmt_iterator *bsi, tree *vec_stmt) msq = make_ssa_name (vec_dest, NULL_TREE); phi_stmt = create_phi_node (msq, loop->header); /* CHECKME */ SSA_NAME_DEF_STMT (msq) = phi_stmt; - add_phi_arg (&phi_stmt, msq_init, loop_preheader_edge (loop)); - add_phi_arg (&phi_stmt, lsq, loop_latch_edge (loop)); + add_phi_arg (phi_stmt, msq_init, loop_preheader_edge (loop)); + add_phi_arg (phi_stmt, lsq, loop_latch_edge (loop)); /* <5> Create <vec_dest = realign_load (msq, lsq, magic)> in loop */ |