rename test
[oota-llvm.git] / test / CodeGen / X86 / avx-128.ll
1 ; RUN: llc < %s -mtriple=x86_64-apple-darwin -march=x86 -mcpu=corei7 -mattr=avx | FileCheck %s
2
3 @z = common global <4 x float> zeroinitializer, align 16
4
5 define void @zero() nounwind ssp {
6 entry:
7   ; CHECK: vxorps
8   ; CHECK: vmovaps
9   store <4 x float> zeroinitializer, <4 x float>* @z, align 16
10   ret void
11 }
12