summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-01-24 20:17:09 +0000
committerChris Lattner <sabre@nondot.org>2010-01-24 20:17:09 +0000
commit43dc2e6d76ba6b9c61151132d6313b571cd87c82 (patch)
tree9389080972f7da9dba28060e94b88ee3594ce0d2 /lib
parent10c4245103caa88e0b91b113bcdebc17f055585f (diff)
downloadllvm-43dc2e6d76ba6b9c61151132d6313b571cd87c82.tar.gz
llvm-43dc2e6d76ba6b9c61151132d6313b571cd87c82.tar.bz2
llvm-43dc2e6d76ba6b9c61151132d6313b571cd87c82.tar.xz
reassociate should do this.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94374 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/README.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/README.txt b/lib/Target/README.txt
index f4aa531ae0..716085cf1b 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));