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