aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2008-05-23 04:34:58 +0000
committerNick Lewycky <nicholas@mxc.ca>2008-05-23 04:34:58 +0000
commit27f6c138f7f1b67f3c6d7d3f9a1d105541cca481 (patch)
tree2214e57f7527854eebd969ba3ea0cc92f4264dba /test
parent6805e194579c4f6a6d729d9101efa4f242fbf28b (diff)
downloadexternal_llvm-27f6c138f7f1b67f3c6d7d3f9a1d105541cca481.zip
external_llvm-27f6c138f7f1b67f3c6d7d3f9a1d105541cca481.tar.gz
external_llvm-27f6c138f7f1b67f3c6d7d3f9a1d105541cca481.tar.bz2
Revert X + X --> X * 2 optz'n which pessimizes heavily on x86.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51474 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/Transforms/InstCombine/2008-05-22-FoldAddIVec.ll6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/Transforms/InstCombine/2008-05-22-FoldAddIVec.ll b/test/Transforms/InstCombine/2008-05-22-FoldAddIVec.ll
deleted file mode 100644
index 8bdf9bb..0000000
--- a/test/Transforms/InstCombine/2008-05-22-FoldAddIVec.ll
+++ /dev/null
@@ -1,6 +0,0 @@
-; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep mul
-
-define <3 x i8> @f(<3 x i8> %i) {
- %A = add <3 x i8> %i, %i
- ret <3 x i8> %A
-}