diff options
Diffstat (limited to 'gcc/tree-ssa-math-opts.c')
-rw-r--r-- | gcc/tree-ssa-math-opts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-ssa-math-opts.c b/gcc/tree-ssa-math-opts.c index f54d08dffee..a8aaed3962a 100644 --- a/gcc/tree-ssa-math-opts.c +++ b/gcc/tree-ssa-math-opts.c @@ -2533,7 +2533,7 @@ convert_mult_to_fma (gimple mul_stmt, tree op1, tree op2) a*b-c -> fma(a,b,-c): we've exchanged MUL+SUB for FMA+NEG, which is still two operations. Consider -(a*b)-c -> fma(-a,b,-c): we still have 3 operations, but in the FMA form the two NEGs are - independant and could be run in parallel. */ + independent and could be run in parallel. */ } FOR_EACH_IMM_USE_STMT (use_stmt, imm_iter, mul_result) |