diff options
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 ce247fcbde8..ce07166c6ae 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; |