diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-05 15:29:25 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-05 15:29:25 +0000 |
commit | 7d12ea9690dada627cda5cc62898ca934051c258 (patch) | |
tree | 3df16d88d5468f083edd135c99a4e38e2ad459bf /gcc/lambda-code.c | |
parent | 72fae5d08c663efeed5ec7158e61beb0841203be (diff) | |
download | gcc-7d12ea9690dada627cda5cc62898ca934051c258.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@95932 138bc75d-0d04-0410-961f-82ee72b054a4
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 909c28dd371..a19ab92cd38 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. */ |