diff options
Diffstat (limited to 'gcc/tree-ssa-math-opts.c')
-rw-r--r-- | gcc/tree-ssa-math-opts.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-ssa-math-opts.c b/gcc/tree-ssa-math-opts.c index 2eed792da01..0d6eeb69055 100644 --- a/gcc/tree-ssa-math-opts.c +++ b/gcc/tree-ssa-math-opts.c @@ -531,8 +531,8 @@ execute_cse_reciprocals (void) { phi = gsi_stmt (gsi); def = PHI_RESULT (phi); - if (FLOAT_TYPE_P (TREE_TYPE (def)) - && is_gimple_reg (def)) + if (! virtual_operand_p (def) + && FLOAT_TYPE_P (TREE_TYPE (def))) execute_cse_reciprocals_1 (NULL, def); } |