blob: 69d4b93bb78deda7734c233643f6eef88c67b6ea [file] [log] [blame]
Nadav Rotemb5ce6ee2012-01-11 20:19:17 +00001; RUN: llc < %s -march=x86 -mcpu=corei7-avx -mattr=+avx -mtriple=i686-pc-win32 | FileCheck %s
2
Stephen Lin6f36b452013-07-18 22:47:09 +00003;CHECK-LABEL: add18i16:
Nadav Rotemb5ce6ee2012-01-11 20:19:17 +00004define void @add18i16(<18 x i16>* nocapture sret %ret, <18 x i16>* %bp) nounwind {
Nadav Rotem7b3120b2013-01-19 08:38:41 +00005;CHECK: vmovaps
Nadav Rotemb5ce6ee2012-01-11 20:19:17 +00006 %b = load <18 x i16>* %bp, align 16
7 %x = add <18 x i16> zeroinitializer, %b
8 store <18 x i16> %x, <18 x i16>* %ret, align 16
9;CHECK: ret
10 ret void
11}
12