diff options
author | Kazu Hirata <kazu@gcc.gnu.org> | 2004-11-14 04:08:11 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-11-14 04:08:11 +0000 |
commit | eaf0dc0254ab1fafb2a22b12ad336a23eae0197b (patch) | |
tree | 0b05f9e1f23ff7604d5d82dfc8eb337458812e25 /gcc/tree-if-conv.c | |
parent | 88957e792d57fc9fdb3afbe2093cca7936f9fcf7 (diff) | |
download | gcc-eaf0dc0254ab1fafb2a22b12ad336a23eae0197b.zip gcc-eaf0dc0254ab1fafb2a22b12ad336a23eae0197b.tar.gz gcc-eaf0dc0254ab1fafb2a22b12ad336a23eae0197b.tar.bz2 |
tree-cfg.c, [...]: Replace TREE_CHAIN with PHI_CHAIN where appropriate.
* tree-cfg.c, tree-if-conv.c, tree-ssa-loop-ivopts.c,
tree-ssa-loop-manip.c, tree-vectorizer.c: Replace TREE_CHAIN
with PHI_CHAIN where appropriate.
From-SVN: r90611
Diffstat (limited to 'gcc/tree-if-conv.c')
-rw-r--r-- | gcc/tree-if-conv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-if-conv.c b/gcc/tree-if-conv.c index ce247fc..ce07166 100644 --- a/gcc/tree-if-conv.c +++ b/gcc/tree-if-conv.c @@ -824,7 +824,7 @@ process_phi_nodes (struct loop *loop) while (phi) { - tree next = TREE_CHAIN (phi); + tree next = PHI_CHAIN (phi); replace_phi_with_cond_modify_expr (phi, cond, true_bb, &bsi); release_phi_node (phi); phi = next; |