aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-flow.h
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2004-11-25 22:31:09 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2004-11-25 22:31:09 +0000
commitd2e398dfc83188c4a94e191d51689ab56e0991a0 (patch)
tree66c8df427757e768c2a5be03b5940cc14259184e /gcc/tree-flow.h
parent9f8e747867f0b4824c02c7745491b8ef2110b814 (diff)
downloadgcc-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-flow.h')
-rw-r--r--gcc/tree-flow.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-flow.h b/gcc/tree-flow.h
index 9847eaf..39b81fc 100644
--- a/gcc/tree-flow.h
+++ b/gcc/tree-flow.h
@@ -518,7 +518,7 @@ extern stmt_ann_t create_stmt_ann (tree);
extern tree_ann_t create_tree_ann (tree);
extern void reserve_phi_args_for_new_edge (basic_block);
extern tree create_phi_node (tree, basic_block);
-extern void add_phi_arg (tree *, tree, edge);
+extern void add_phi_arg (tree, tree, edge);
extern void remove_phi_args (edge);
extern void remove_phi_node (tree, tree, basic_block);
extern void remove_all_phi_nodes_for (bitmap);