aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/Reassociate/2006-04-27-ReassociateVector.ll
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-04-28 04:14:29 +0000
committerChris Lattner <sabre@nondot.org>2006-04-28 04:14:29 +0000
commit86175f47b6df7f07303455dd7d2b553308483294 (patch)
tree2dd874f4f5d941f0f0ce17ab66484cd3c26f2c4b /test/Transforms/Reassociate/2006-04-27-ReassociateVector.ll
parented1492eaf5998678a5e403ab84abc8c9e52e46fa (diff)
downloadexternal_llvm-86175f47b6df7f07303455dd7d2b553308483294.zip
external_llvm-86175f47b6df7f07303455dd7d2b553308483294.tar.gz
external_llvm-86175f47b6df7f07303455dd7d2b553308483294.tar.bz2
new testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28006 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/Reassociate/2006-04-27-ReassociateVector.ll')
-rw-r--r--test/Transforms/Reassociate/2006-04-27-ReassociateVector.ll7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/Transforms/Reassociate/2006-04-27-ReassociateVector.ll b/test/Transforms/Reassociate/2006-04-27-ReassociateVector.ll
new file mode 100644
index 0000000..30c8426
--- /dev/null
+++ b/test/Transforms/Reassociate/2006-04-27-ReassociateVector.ll
@@ -0,0 +1,7 @@
+; RUN: llvm-as < %s | opt -reassociate -disable-output
+
+void %foo() {
+ %tmp162 = sub <4 x float> zeroinitializer, zeroinitializer
+ %tmp164 = mul <4 x float> zeroinitializer, %tmp162
+ ret void
+}