aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-phinodes.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2004-10-30 00:13:52 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2004-10-30 00:13:52 +0000
commit9b1bfcc06527851db5ec3258248adfaa7b81fa9c (patch)
tree21782ffd43aade500a49e56be6ea0f46fc41934e /gcc/tree-phinodes.c
parentefea75f9a48a3b5571ed974fd48aaf42616f877c (diff)
downloadgcc-9b1bfcc06527851db5ec3258248adfaa7b81fa9c.zip
gcc-9b1bfcc06527851db5ec3258248adfaa7b81fa9c.tar.gz
gcc-9b1bfcc06527851db5ec3258248adfaa7b81fa9c.tar.bz2
* tree-phinodes.c (create_phi_node): Don't zero PHI_REWRITTEN.
From-SVN: r89867
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 71f0498..89fbb3d 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;