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-ssa-loop-manip.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-ssa-loop-manip.c')
-rw-r--r-- | gcc/tree-ssa-loop-manip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-ssa-loop-manip.c b/gcc/tree-ssa-loop-manip.c index 2232494..4349956 100644 --- a/gcc/tree-ssa-loop-manip.c +++ b/gcc/tree-ssa-loop-manip.c @@ -665,7 +665,7 @@ lv_adjust_loop_header_phi (basic_block first, basic_block second, for (phi2 = phi_nodes (second), phi1 = phi_nodes (first); phi2 && phi1; - phi2 = TREE_CHAIN (phi2), phi1 = TREE_CHAIN (phi1)) + phi2 = PHI_CHAIN (phi2), phi1 = PHI_CHAIN (phi1)) { int i; for (i = 0; i < PHI_NUM_ARGS (phi2); i++) |