forked from OSchip/llvm-project
13 lines
386 B
LLVM
13 lines
386 B
LLVM
; RUN: llc < %s -march=x86 -mcpu=corei7-avx -mattr=+avx -mtriple=i686-pc-win32 | FileCheck %s
|
|
|
|
;CHECK-LABEL: add18i16:
|
|
define void @add18i16(<18 x i16>* nocapture sret %ret, <18 x i16>* %bp) nounwind {
|
|
;CHECK: vmovaps
|
|
%b = load <18 x i16>, <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
|
|
}
|
|
|