blob: 44704b6adb396d6f84b04ba4499094c52e53ded2 [file] [log] [blame]
Evan Cheng411fc172008-05-13 08:35:03 +00001; RUN: llvm-as %s -o - | llc -march=x86-64 -mattr=+sse2
Dan Gohmana0763d92007-09-24 15:54:53 +00002
Evan Cheng411fc172008-05-13 08:35:03 +00003define void @test(float* %R, <4 x float> %X) nounwind {
Dan Gohmana0763d92007-09-24 15:54:53 +00004 %tmp = extractelement <4 x float> %X, i32 3
5 store float %tmp, float* %R
6 ret void
7}