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 5b185b6..6c60e002 100644 --- a/gcc/tree-ssa-structalias.c +++ b/gcc/tree-ssa-structalias.c @@ -6589,7 +6589,7 @@ compute_points_to_sets (void) { gimple phi = gsi_stmt (gsi); - if (is_gimple_reg (gimple_phi_result (phi))) + if (! virtual_operand_p (gimple_phi_result (phi))) find_func_aliases (phi); } @@ -6966,7 +6966,7 @@ ipa_pta_execute (void) { gimple phi = gsi_stmt (gsi); - if (is_gimple_reg (gimple_phi_result (phi))) + if (! virtual_operand_p (gimple_phi_result (phi))) find_func_aliases (phi); } |