Inline asm mult-alt constraint tests.
[oota-llvm.git] / test / CodeGen / X86 / insertelement-copytoregs.ll
1 ; RUN: llc < %s -march=x86-64 | grep -v IMPLICIT_DEF
2
3 define void @foo(<2 x float>* %p) {
4   %t = insertelement <2 x float> undef, float 0.0, i32 0
5   %v = insertelement <2 x float> %t,   float 0.0, i32 1
6   br label %bb8
7
8 bb8:
9   store <2 x float> %v, <2 x float>* %p
10   ret void
11 }