aboutsummaryrefslogtreecommitdiffstats
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
commitc5f05aefcf6acb93bac4a4eaf701812343d0d639 (patch)
tree9389080972f7da9dba28060e94b88ee3594ce0d2 /lib
parent3554f541435d07ad3e111c57b7824f460053f69e (diff)
downloadexternal_llvm-c5f05aefcf6acb93bac4a4eaf701812343d0d639.zip
external_llvm-c5f05aefcf6acb93bac4a4eaf701812343d0d639.tar.gz
external_llvm-c5f05aefcf6acb93bac4a4eaf701812343d0d639.tar.bz2
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 f4aa531..716085c 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));