1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

Cleanup test case by adding checks for test names.

llvm-svn: 148166
This commit is contained in:
Chad Rosier 2012-01-14 01:46:51 +00:00
parent 742b6d295b
commit b4f2ccc1e0

View File

@ -38,6 +38,7 @@ define <8 x float> @test5(float* nocapture %f) nounwind uwtable readonly ssp {
entry: entry:
%0 = bitcast float* %f to <4 x float>* %0 = bitcast float* %f to <4 x float>*
%1 = load <4 x float>* %0, align 16 %1 = load <4 x float>* %0, align 16
; CHECK: test5
; CHECK: vmovaps ; CHECK: vmovaps
; CHECK-NOT: vxorps ; CHECK-NOT: vxorps
; CHECK-NOT: vinsertf128 ; CHECK-NOT: vinsertf128
@ -49,6 +50,7 @@ define <4 x double> @test6(double* nocapture %d) nounwind uwtable readonly ssp {
entry: entry:
%0 = bitcast double* %d to <2 x double>* %0 = bitcast double* %d to <2 x double>*
%1 = load <2 x double>* %0, align 16 %1 = load <2 x double>* %0, align 16
; CHECK: test6
; CHECK: vmovaps ; CHECK: vmovaps
; CHECK-NOT: vxorps ; CHECK-NOT: vxorps
; CHECK-NOT: vinsertf128 ; CHECK-NOT: vinsertf128
@ -62,4 +64,3 @@ define <16 x i16> @test7(<4 x i16> %a) nounwind {
%b = shufflevector <4 x i16> %a, <4 x i16> undef, <16 x i32> <i32 1, i32 1, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef> %b = shufflevector <4 x i16> %a, <4 x i16> undef, <16 x i32> <i32 1, i32 1, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef>
ret <16 x i16> %b ret <16 x i16> %b
} }