From: Michael Zuckerman Date: Fri, 28 Oct 2016 17:25:26 +0000 (+0000) Subject: Fixing small problem with avx512-reduceIntrin.c test on some OS. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=61288a57480d0380ebf4f26e4b9343517d1acd18;p=clang Fixing small problem with avx512-reduceIntrin.c test on some OS. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@285419 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/avx512-reduceIntrin.c b/test/CodeGen/avx512-reduceIntrin.c index 7ec567b12e..b4c2d196ad 100644 --- a/test/CodeGen/avx512-reduceIntrin.c +++ b/test/CodeGen/avx512-reduceIntrin.c @@ -391,7 +391,7 @@ double test_mm512_mask_reduce_add_pd(__mmask8 __M, __m512d __W){ double test_mm512_mask_reduce_mul_pd(__mmask8 __M, __m512d __W){ // CHECK: {{.*}} = bitcast i8 %__M to <8 x i1> - // CHECK: {{.*}} = select <8 x i1> %0, <8 x double> %__W, <8 x double> + // CHECK: {{.*}} = select <8 x i1> {{.*}}, <8 x double> %__W, <8 x double> // CHECK: %shuffle.i = shufflevector <8 x double> {{.*}}, <8 x double> undef, <4 x i32> // CHECK: %shuffle1.i = shufflevector <8 x double> {{.*}}, <8 x double> undef, <4 x i32> // CHECK: %mul.i = fmul <4 x double> %shuffle.i, %shuffle1.i @@ -425,7 +425,7 @@ float test_mm512_mask_reduce_add_ps(__mmask16 __M, __m512 __W){ float test_mm512_mask_reduce_mul_ps(__mmask16 __M, __m512 __W){ // CHECK: {{.*}} = bitcast i16 %__M to <16 x i1> - // CHECK: {{.*}} = select <16 x i1> %0, <16 x float> %__W, <16 x float> + // CHECK: {{.*}} = select <16 x i1> {{.*}}, <16 x float> %__W, <16 x float> // CHECK: %shuffle.i = shufflevector <16 x float> {{.*}}, <16 x float> undef, <8 x i32> // CHECK: %shuffle1.i = shufflevector <16 x float> {{.*}}, <16 x float> undef, <8 x i32> // CHECK: %mul.i = fmul <8 x float> %shuffle.i, %shuffle1.i