diff options
Diffstat (limited to 'gcc/tree-ssa-structalias.c')
-rw-r--r-- | gcc/tree-ssa-structalias.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-ssa-structalias.c b/gcc/tree-ssa-structalias.c index 5c49b52..50ef512 100644 --- a/gcc/tree-ssa-structalias.c +++ b/gcc/tree-ssa-structalias.c @@ -4793,7 +4793,7 @@ compute_points_to_sets (struct alias_info *ai) block_stmt_iterator bsi; tree phi; - for (phi = phi_nodes (bb); phi; phi = TREE_CHAIN (phi)) + for (phi = phi_nodes (bb); phi; phi = PHI_CHAIN (phi)) { if (is_gimple_reg (PHI_RESULT (phi))) { @@ -4946,7 +4946,7 @@ ipa_pta_execute (void) block_stmt_iterator bsi; tree phi; - for (phi = phi_nodes (bb); phi; phi = TREE_CHAIN (phi)) + for (phi = phi_nodes (bb); phi; phi = PHI_CHAIN (phi)) { if (is_gimple_reg (PHI_RESULT (phi))) { |