aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2012-01-14 01:46:51 +0000
committerChad Rosier <mcrosier@apple.com>2012-01-14 01:46:51 +0000
commit4f00c08062277fe0044e8e91d30d3bebd1d6282f (patch)
tree0dd9731705aabee40015e7f6dc9473b2ce7b1703
parentbd6dc3be1dac2d153f29927cad517af9e579b204 (diff)
downloadexternal_llvm-4f00c08062277fe0044e8e91d30d3bebd1d6282f.zip
external_llvm-4f00c08062277fe0044e8e91d30d3bebd1d6282f.tar.gz
external_llvm-4f00c08062277fe0044e8e91d30d3bebd1d6282f.tar.bz2
Cleanup test case by adding checks for test names.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@148166 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGen/X86/avx-shuffle.ll3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/CodeGen/X86/avx-shuffle.ll b/test/CodeGen/X86/avx-shuffle.ll
index bb55ab6..a059a4d 100644
--- a/test/CodeGen/X86/avx-shuffle.ll
+++ b/test/CodeGen/X86/avx-shuffle.ll
@@ -38,6 +38,7 @@ define <8 x float> @test5(float* nocapture %f) nounwind uwtable readonly ssp {
entry:
%0 = bitcast float* %f to <4 x float>*
%1 = load <4 x float>* %0, align 16
+; CHECK: test5
; CHECK: vmovaps
; CHECK-NOT: vxorps
; CHECK-NOT: vinsertf128
@@ -49,6 +50,7 @@ define <4 x double> @test6(double* nocapture %d) nounwind uwtable readonly ssp {
entry:
%0 = bitcast double* %d to <2 x double>*
%1 = load <2 x double>* %0, align 16
+; CHECK: test6
; CHECK: vmovaps
; CHECK-NOT: vxorps
; 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>
ret <16 x i16> %b
}
-