diff options
author | Michael Zuckerman <Michael.zuckerman@intel.com> | 2016-10-28 17:25:26 +0000 |
---|---|---|
committer | Michael Zuckerman <Michael.zuckerman@intel.com> | 2016-10-28 17:25:26 +0000 |
commit | 22a03e435aa73a7b8c25713bd1c64da315b4e9df (patch) | |
tree | 884ed62073c967ba05e6a6d677e6320c7ac08df5 /clang/test/CodeGen/avx512-reduceIntrin.c | |
parent | 128bd99808a90c39ad41f4cca61efefe60c09e0d (diff) | |
download | bcm5719-llvm-22a03e435aa73a7b8c25713bd1c64da315b4e9df.tar.gz bcm5719-llvm-22a03e435aa73a7b8c25713bd1c64da315b4e9df.zip |
Fixing small problem with avx512-reduceIntrin.c test on some OS.
llvm-svn: 285419
Diffstat (limited to 'clang/test/CodeGen/avx512-reduceIntrin.c')
-rw-r--r-- | clang/test/CodeGen/avx512-reduceIntrin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGen/avx512-reduceIntrin.c b/clang/test/CodeGen/avx512-reduceIntrin.c index 7ec567b12eb..b4c2d196ad0 100644 --- a/clang/test/CodeGen/avx512-reduceIntrin.c +++ b/clang/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> <double 1.000000e+00, double 1.000000e+00, double 1.000000e+00, double 1.000000e+00, double 1.000000e+00, double 1.000000e+00, double 1.000000e+00, double 1.000000e+00> + // CHECK: {{.*}} = select <8 x i1> {{.*}}, <8 x double> %__W, <8 x double> <double 1.000000e+00, double 1.000000e+00, double 1.000000e+00, double 1.000000e+00, double 1.000000e+00, double 1.000000e+00, double 1.000000e+00, double 1.000000e+00> // CHECK: %shuffle.i = shufflevector <8 x double> {{.*}}, <8 x double> undef, <4 x i32> <i32 0, i32 1, i32 2, i32 3> // CHECK: %shuffle1.i = shufflevector <8 x double> {{.*}}, <8 x double> undef, <4 x i32> <i32 4, i32 5, i32 6, i32 7> // 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> <float 1.000000e+00, float 1.000000e+00, float 1.000000e+00, float 1.000000e+00, float 1.000000e+00, float 1.000000e+00, float 1.000000e+00, float 1.000000e+00, float 1.000000e+00, float 1.000000e+00, float 1.000000e+00, float 1.000000e+00, float 1.000000e+00, float 1.000000e+00, float 1.000000e+00, float 1.000000e+00> + // CHECK: {{.*}} = select <16 x i1> {{.*}}, <16 x float> %__W, <16 x float> <float 1.000000e+00, float 1.000000e+00, float 1.000000e+00, float 1.000000e+00, float 1.000000e+00, float 1.000000e+00, float 1.000000e+00, float 1.000000e+00, float 1.000000e+00, float 1.000000e+00, float 1.000000e+00, float 1.000000e+00, float 1.000000e+00, float 1.000000e+00, float 1.000000e+00, float 1.000000e+00> // CHECK: %shuffle.i = shufflevector <16 x float> {{.*}}, <16 x float> undef, <8 x i32> <i32 0, i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7> // CHECK: %shuffle1.i = shufflevector <16 x float> {{.*}}, <16 x float> undef, <8 x i32> <i32 8, i32 9, i32 10, i32 11, i32 12, i32 13, i32 14, i32 15> // CHECK: %mul.i = fmul <8 x float> %shuffle.i, %shuffle1.i |