Commit 9b1bfcc0 by Kazu Hirata Committed by Kazu Hirata

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

From-SVN: r89867
parent efea75f9
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
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment