llvm.memory.barrier, and impl for x86 and alpha
[oota-llvm.git] / test / CodeGen / X86 / split-select.ll
1 ; RUN: llvm-as < %s | llc -march=x86-64 | grep test | count 1
2
3 define void @foo(i1 %c, <2 x float> %a, <2 x float> %b, <2 x float>* %p) {
4   %x = select i1 %c, <2 x float> %a, <2 x float> %b
5   store <2 x float> %x, <2 x float>* %p
6   ret void
7 }