1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

Add the check to the testcase of r106419.

llvm-svn: 106421
This commit is contained in:
Kalle Raiskila 2010-06-21 15:11:51 +00:00
parent 2001fd19b9
commit 5e3c80d1f8

View File

@ -8,6 +8,9 @@ define <4 x float> @shuffle(<4 x float> %param1, <4 x float> %param2) {
}
define <4 x float> @splat(float %param1) {
; CHECK: lqa
; CHECK: shufb $3
; CHECK: bi
%vec = insertelement <1 x float> undef, float %param1, i32 0
%val= shufflevector <1 x float> %vec, <1 x float> undef, <4 x i32> <i32 0,i32 0,i32 0,i32 0>
ret <4 x float> %val