reassociate should do this.

llvm-svn: 94374
This commit is contained in:
Chris Lattner 2010-01-24 20:17:09 +00:00
parent 7e3f8b60d6
commit e3a68d1063
1 changed files with 1 additions and 1 deletions

View File

@ -175,7 +175,7 @@ _foo:
mulsd %xmm2, %xmm0
ret
Instcombine should be able to turn it into:
Reassociate should be able to turn it into:
double foo(double x, double y) {
return ((x + 0.1234 * y) * (x - 0.1234 * y));