diff options
Diffstat (limited to 'gcc/tree-parloops.c')
-rw-r--r-- | gcc/tree-parloops.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/tree-parloops.c b/gcc/tree-parloops.c index 224d546b755..76bb265954e 100644 --- a/gcc/tree-parloops.c +++ b/gcc/tree-parloops.c @@ -1517,7 +1517,7 @@ transform_to_exit_first_loop (struct loop *loop, htab_t reduction_list, tree nit { phi = gsi_stmt (gsi); res = PHI_RESULT (phi); - if (!is_gimple_reg (res)) + if (virtual_operand_p (res)) { gsi_next (&gsi); continue; @@ -1953,7 +1953,7 @@ gather_scalar_reductions (loop_p loop, htab_t reduction_list) tree res = PHI_RESULT (phi); bool double_reduc; - if (!is_gimple_reg (res)) + if (virtual_operand_p (res)) continue; if (!simple_iv (loop, loop, res, &iv, true) @@ -2019,7 +2019,7 @@ try_create_reduction_list (loop_p loop, htab_t reduction_list) gimple reduc_phi; tree val = PHI_ARG_DEF_FROM_EDGE (phi, exit); - if (is_gimple_reg (val)) + if (!virtual_operand_p (val)) { if (dump_file && (dump_flags & TDF_DETAILS)) { @@ -2074,7 +2074,7 @@ try_create_reduction_list (loop_p loop, htab_t reduction_list) tree def = PHI_RESULT (phi); affine_iv iv; - if (is_gimple_reg (def) && !simple_iv (loop, loop, def, &iv, true)) + if (!virtual_operand_p (def) && !simple_iv (loop, loop, def, &iv, true)) { struct reduction_info *red; |