diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2005-03-05 15:29:25 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2005-03-05 15:29:25 +0000 |
commit | d19e3ef69676036ebb9b3ad68f052a75690e3366 (patch) | |
tree | 3df16d88d5468f083edd135c99a4e38e2ad459bf /gcc/lambda-code.c | |
parent | 25f99665afbb1321579bfe19f1219ad65c9dced4 (diff) | |
download | gcc-d19e3ef69676036ebb9b3ad68f052a75690e3366.zip gcc-d19e3ef69676036ebb9b3ad68f052a75690e3366.tar.gz gcc-d19e3ef69676036ebb9b3ad68f052a75690e3366.tar.bz2 |
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
Diffstat (limited to 'gcc/lambda-code.c')
-rw-r--r-- | gcc/lambda-code.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/lambda-code.c b/gcc/lambda-code.c index 909c28d..a19ab92 100644 --- a/gcc/lambda-code.c +++ b/gcc/lambda-code.c @@ -2327,7 +2327,7 @@ perfect_nestify (struct loops *loops, while (phi_nodes (olddest) != NULL) { SET_PHI_RESULT (phi_nodes (olddest), NULL); - remove_phi_node (phi_nodes (olddest), NULL, olddest); + remove_phi_node (phi_nodes (olddest), NULL); } /* and add them back to the new basic block. */ |