2009-09-09 01:54:48 +02:00
|
|
|
; RUN: llc < %s -march=x86 -mattr=+sse2,-sse41 | grep movss | count 1
|
|
|
|
; RUN: llc < %s -march=x86 -mattr=+sse2,-sse41 | not grep pinsrw
|
2006-04-20 19:50:10 +02:00
|
|
|
|
2010-02-28 00:53:53 +01:00
|
|
|
define void @test(<4 x float>* %F, i32 %I) nounwind {
|
2007-12-12 08:55:34 +01:00
|
|
|
%tmp = load <4 x float>* %F ; <<4 x float>> [#uses=1]
|
|
|
|
%f = sitofp i32 %I to float ; <float> [#uses=1]
|
|
|
|
%tmp1 = insertelement <4 x float> %tmp, float %f, i32 0 ; <<4 x float>> [#uses=2]
|
2009-06-05 00:49:04 +02:00
|
|
|
%tmp18 = fadd <4 x float> %tmp1, %tmp1 ; <<4 x float>> [#uses=1]
|
2006-04-20 19:50:10 +02:00
|
|
|
store <4 x float> %tmp18, <4 x float>* %F
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2010-02-28 00:53:53 +01:00
|
|
|
define void @test2(<4 x float>* %F, i32 %I, float %g) nounwind {
|
2007-12-12 08:55:34 +01:00
|
|
|
%tmp = load <4 x float>* %F ; <<4 x float>> [#uses=1]
|
|
|
|
%f = sitofp i32 %I to float ; <float> [#uses=1]
|
|
|
|
%tmp1 = insertelement <4 x float> %tmp, float %f, i32 2 ; <<4 x float>> [#uses=1]
|
2006-04-20 19:50:10 +02:00
|
|
|
store <4 x float> %tmp1, <4 x float>* %F
|
|
|
|
ret void
|
|
|
|
}
|