aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-flow.h
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2004-11-22 22:01:11 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2004-11-22 22:01:11 +0000
commitb31997c0dca31350faba5f7859acbd6109f9039e (patch)
tree14ecdd9bd130d11cf1bae895d1af4e0de1322006 /gcc/tree-flow.h
parentd7889929fdbfff585ee02e6e8d791f2e3b163919 (diff)
downloadgcc-b31997c0dca31350faba5f7859acbd6109f9039e.zip
gcc-b31997c0dca31350faba5f7859acbd6109f9039e.tar.gz
gcc-b31997c0dca31350faba5f7859acbd6109f9039e.tar.bz2
tree-flow.h: Remove the prototype for remove_phi_arg.
* tree-flow.h: Remove the prototype for remove_phi_arg. Add a prototype for remove_phi_args. * tree-phinodes.c (remove_phi_arg): Remove. (remove_phi_args): New. * tree-ssa.c (ssa_remove_edge): Call remove_phi_args instead of remove_phi_arg. From-SVN: r91034
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 da68b32..4b9a3ed 100644
--- a/gcc/tree-flow.h
+++ b/gcc/tree-flow.h
@@ -510,7 +510,7 @@ extern stmt_ann_t create_stmt_ann (tree);
extern tree_ann_t create_tree_ann (tree);
extern tree create_phi_node (tree, basic_block);
extern void add_phi_arg (tree *, tree, edge);
-extern void remove_phi_arg (tree, basic_block);
+extern void remove_phi_args (edge);
extern void remove_phi_arg_num (tree, int);
extern void remove_phi_node (tree, tree, basic_block);
extern void remove_all_phi_nodes_for (bitmap);