From: Philip Reames Date: Fri, 22 Mar 2019 16:20:24 +0000 (+0000) Subject: [Tests] Use valid alignment in masked.gather tests X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e10e2ecbf75dc8af1b1c4ef5cb1477e6c21db4a0;p=llvm [Tests] Use valid alignment in masked.gather tests git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@356775 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Transforms/InstCombine/masked_intrinsics.ll b/test/Transforms/InstCombine/masked_intrinsics.ll index 4417ced6906..1a151e6a170 100644 --- a/test/Transforms/InstCombine/masked_intrinsics.ll +++ b/test/Transforms/InstCombine/masked_intrinsics.ll @@ -94,7 +94,7 @@ define <2 x double> @gather_zeromask(<2 x double*> %ptrs, <2 x double> %passthru ; CHECK-LABEL: @gather_zeromask( ; CHECK-NEXT: ret <2 x double> [[PASSTHRU:%.*]] ; - %res = call <2 x double> @llvm.masked.gather.v2f64.v2p0f64(<2 x double*> %ptrs, i32 5, <2 x i1> zeroinitializer, <2 x double> %passthru) + %res = call <2 x double> @llvm.masked.gather.v2f64.v2p0f64(<2 x double*> %ptrs, i32 4, <2 x i1> zeroinitializer, <2 x double> %passthru) ret <2 x double> %res } @@ -102,10 +102,10 @@ define <2 x double> @gather_zeromask(<2 x double*> %ptrs, <2 x double> %passthru define <2 x double> @gather_onemask(<2 x double*> %ptrs, <2 x double> %passthru) { ; CHECK-LABEL: @gather_onemask( -; CHECK-NEXT: [[RES:%.*]] = call <2 x double> @llvm.masked.gather.v2f64.v2p0f64(<2 x double*> [[PTRS:%.*]], i32 5, <2 x i1> , <2 x double> undef) +; CHECK-NEXT: [[RES:%.*]] = call <2 x double> @llvm.masked.gather.v2f64.v2p0f64(<2 x double*> [[PTRS:%.*]], i32 4, <2 x i1> , <2 x double> undef) ; CHECK-NEXT: ret <2 x double> [[RES]] ; - %res = call <2 x double> @llvm.masked.gather.v2f64.v2p0f64(<2 x double*> %ptrs, i32 5, <2 x i1> , <2 x double> %passthru) + %res = call <2 x double> @llvm.masked.gather.v2f64.v2p0f64(<2 x double*> %ptrs, i32 4, <2 x i1> , <2 x double> %passthru) ret <2 x double> %res } @@ -114,13 +114,13 @@ define <2 x double> @gather_lane0(double* %base, double %pt) { ; CHECK-LABEL: @gather_lane0( ; CHECK-NEXT: [[PTRS:%.*]] = getelementptr double, double* [[BASE:%.*]], <2 x i64> ; CHECK-NEXT: [[PT_V2:%.*]] = insertelement <2 x double> undef, double [[PT:%.*]], i64 1 -; CHECK-NEXT: [[RES:%.*]] = call <2 x double> @llvm.masked.gather.v2f64.v2p0f64(<2 x double*> [[PTRS]], i32 5, <2 x i1> , <2 x double> [[PT_V2]]) +; CHECK-NEXT: [[RES:%.*]] = call <2 x double> @llvm.masked.gather.v2f64.v2p0f64(<2 x double*> [[PTRS]], i32 4, <2 x i1> , <2 x double> [[PT_V2]]) ; CHECK-NEXT: ret <2 x double> [[RES]] ; %ptrs = getelementptr double, double *%base, <2 x i64> %pt_v1 = insertelement <2 x double> undef, double %pt, i64 0 %pt_v2 = insertelement <2 x double> %pt_v1, double %pt, i64 1 - %res = call <2 x double> @llvm.masked.gather.v2f64.v2p0f64(<2 x double*> %ptrs, i32 5, <2 x i1> , <2 x double> %pt_v2) + %res = call <2 x double> @llvm.masked.gather.v2f64.v2p0f64(<2 x double*> %ptrs, i32 4, <2 x i1> , <2 x double> %pt_v2) ret <2 x double> %res }