From d19e3ef69676036ebb9b3ad68f052a75690e3366 Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Sat, 5 Mar 2005 15:29:25 +0000 Subject: tree-phinodes.c (remove_phi_node): Drop the last argument. * tree-phinodes.c (remove_phi_node): Drop the last argument. * tree-flow.h: Adjust the prototype for remove_phi_node. * lambda-code.c (perfect_nestify): Adjust a call to remove_phi_node. * tree-cfg.c (remove_phi_nodes_and_edges_for_unreachable_block): Likewise. * tree-outof-ssa.c (eliminate_virtual_phis, remove_ssa_form): Likewise. * tree-ssa-dce.c (remove_dead_phis): Likewise. * tree-ssa-loop-ivopts.c (remove_statement): Likewise. * tree-ssa-pre.c (remove_dead_inserted_code): Likewise. * tree-ssa.c (kill_redundant_phi_nodes): Likewise. From-SVN: r95932 --- gcc/tree-cfg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/tree-cfg.c') diff --git a/gcc/tree-cfg.c b/gcc/tree-cfg.c index 6ba0a02..b87ce54 100644 --- a/gcc/tree-cfg.c +++ b/gcc/tree-cfg.c @@ -1997,7 +1997,7 @@ remove_phi_nodes_and_edges_for_unreachable_block (basic_block bb) while (phi) { tree next = PHI_CHAIN (phi); - remove_phi_node (phi, NULL_TREE, bb); + remove_phi_node (phi, NULL_TREE); phi = next; } -- cgit v1.1