From: Chris Lattner Date: Sun, 24 Jan 2010 20:17:09 +0000 (+0000) Subject: reassociate should do this. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=43dc2e6d76ba6b9c61151132d6313b571cd87c82;p=oota-llvm.git reassociate should do this. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94374 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/README.txt b/lib/Target/README.txt index f4aa531ae06..716085cf1bc 100644 --- a/lib/Target/README.txt +++ b/lib/Target/README.txt @@ -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));