blob: 0eef5173b858f2b5df9ab2a7b4ed6d69cbb0b997 [file] [log] [blame]
Dan Gohmanf7b05132007-08-10 14:59:38 +00001; RUN: llvm-as < %s | llc -march=x86-64 | grep -v IMPLICIT_DEF
2
3define 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
8bb8:
9 store <2 x float> %v, <2 x float>* %p
10 ret void
11}