* tree-phinodes.c (create_phi_node): Don't zero PHI_REWRITTEN.

From-SVN: r89867
This commit is contained in:
Kazu Hirata 2004-10-30 00:13:52 +00:00 committed by Kazu Hirata
parent efea75f9a4
commit 9b1bfcc065
2 changed files with 4 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2004-10-30 Kazu Hirata <kazu@cs.umass.edu>
* tree-phinodes.c (create_phi_node): Don't zero PHI_REWRITTEN.
2004-10-29 Jeff Law <law@redhat.com>
* tree-ssa-dom.c (struct edge_info): New structure holding

View File

@ -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;