summaryrefslogtreecommitdiff
path: root/gcc/tree-phinodes.c
diff options
context:
space:
mode:
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2004-10-30 00:13:52 +0000
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2004-10-30 00:13:52 +0000
commit625ab04c6dc5cdf44dde33b34dc8920706674140 (patch)
tree21782ffd43aade500a49e56be6ea0f46fc41934e /gcc/tree-phinodes.c
parent2f0993e70013d081f9ca88d983b1d7c3d1de7e2c (diff)
downloadgcc-625ab04c6dc5cdf44dde33b34dc8920706674140.tar.gz
* tree-phinodes.c (create_phi_node): Don't zero PHI_REWRITTEN.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@89867 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-phinodes.c')
-rw-r--r--gcc/tree-phinodes.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/gcc/tree-phinodes.c b/gcc/tree-phinodes.c
index 71f04982a99..89fbb3d88a7 100644
--- a/gcc/tree-phinodes.c
+++ b/gcc/tree-phinodes.c
@@ -276,10 +276,6 @@ create_phi_node (tree var, basic_block bb)
phi = make_phi_node (var, EDGE_COUNT (bb->preds));
- /* This is a new phi node, so note that is has not yet been
- rewritten. */
- PHI_REWRITTEN (phi) = 0;
-
/* Add the new PHI node to the list of PHI nodes for block BB. */
PHI_CHAIN (phi) = phi_nodes (bb);
bb_ann (bb)->phi_nodes = phi;