summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/2012-01-11-split-cv.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/2012-01-11-split-cv.ll')
-rw-r--r--test/CodeGen/X86/2012-01-11-split-cv.ll12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/CodeGen/X86/2012-01-11-split-cv.ll b/test/CodeGen/X86/2012-01-11-split-cv.ll
new file mode 100644
index 0000000000..6b90072919
--- /dev/null
+++ b/test/CodeGen/X86/2012-01-11-split-cv.ll
@@ -0,0 +1,12 @@
+; RUN: llc < %s -march=x86 -mcpu=corei7-avx -mattr=+avx -mtriple=i686-pc-win32 | FileCheck %s
+
+;CHECK: add18i16
+define void @add18i16(<18 x i16>* nocapture sret %ret, <18 x i16>* %bp) nounwind {
+;CHECK: vmovups
+ %b = load <18 x i16>* %bp, align 16
+ %x = add <18 x i16> zeroinitializer, %b
+ store <18 x i16> %x, <18 x i16>* %ret, align 16
+;CHECK: ret
+ ret void
+}
+