From: Craig Topper Date: Fri, 13 Feb 2015 06:27:39 +0000 (+0000) Subject: [X86] Fix test cases that I foolishly copied and modified from another file that... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f8bd6d398823be8306407e6daa07e4067e9de4df;p=clang [X86] Fix test cases that I foolishly copied and modified from another file that had optimizations on. This caused the check patterns to not quite match. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@229073 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/sse-builtins.c b/test/CodeGen/sse-builtins.c index 5dcb228db2..2ca99693dc 100644 --- a/test/CodeGen/sse-builtins.c +++ b/test/CodeGen/sse-builtins.c @@ -546,24 +546,24 @@ __m128d test_mm_cmpnge_pd(__m128d __a, __m128d __b) { __m128 test_mm_slli_si128(__m128 a) { // CHECK-LABEL: @test_mm_slli_si128 - // CHECK: shufflevector <16 x i8> <{{.*}}, i8 0, i8 0, i8 0, i8 0, i8 0>, <16 x i8> {{.*}}, <16 x i32> + // CHECK: shufflevector <16 x i8> {{.*}}, <16 x i8> {{.*}}, <16 x i32> return _mm_slli_si128(a, 5); } __m128 test_mm_bslli_si128(__m128 a) { // CHECK-LABEL: @test_mm_bslli_si128 - // CHECK: shufflevector <16 x i8> <{{.*}}, i8 0, i8 0, i8 0, i8 0, i8 0>, <16 x i8> {{.*}}, <16 x i32> + // CHECK: shufflevector <16 x i8> {{.*}}, <16 x i8> {{.*}}, <16 x i32> return _mm_bslli_si128(a, 5); } __m128 test_mm_srli_si128(__m128 a) { // CHECK-LABEL: @test_mm_srli_si128 - // CHECK: shufflevector <16 x i8> {{.*}}, <16 x i8> , <16 x i32> + // CHECK: shufflevector <16 x i8> {{.*}}, <16 x i8> {{.*}}, <16 x i32> return _mm_srli_si128(a, 5); } __m128 test_mm_bsrli_si128(__m128 a) { // CHECK-LABEL: @test_mm_bsrli_si128 - // CHECK: shufflevector <16 x i8> {{.*}}, <16 x i8> , <16 x i32> + // CHECK: shufflevector <16 x i8> {{.*}}, <16 x i8> {{.*}}, <16 x i32> return _mm_bsrli_si128(a, 5); }