llvm.memory.barrier, and impl for x86 and alpha
[oota-llvm.git] / test / CodeGen / X86 / vec_shuffle-7.ll
1 ; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -mattr=+sse2 -o %t  -f
2 ; RUN: grep xorps %t | count 1
3 ; RUN: not grep shufps %t
4
5 void %test() {
6         cast <4 x int> zeroinitializer to <4 x float>
7         shufflevector <4 x float> %0, <4 x float> zeroinitializer, <4 x uint> zeroinitializer
8         store <4 x float> %1, <4 x float>* null
9         unreachable
10 }