From e4c4fc5523dfcbad4efc78103cbb51ba34613f53 Mon Sep 17 00:00:00 2001 From: Yaxun Liu Date: Wed, 25 Apr 2018 02:34:04 +0000 Subject: [PATCH] Fix failure in lit test kernel-call.cu There is signext on ppc64. Just remove check for function argument. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@330793 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGenCUDA/kernel-call.cu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/CodeGenCUDA/kernel-call.cu b/test/CodeGenCUDA/kernel-call.cu index c6a4be4427..34a6d0c3d0 100644 --- a/test/CodeGenCUDA/kernel-call.cu +++ b/test/CodeGenCUDA/kernel-call.cu @@ -4,7 +4,7 @@ #include "Inputs/cuda.h" -// CHECK-LABEL: define void @_Z2g1i(i32 %x) +// CHECK-LABEL: define void @_Z2g1i // HIP: call{{.*}}hipSetupArgument // HIP: call{{.*}}hipLaunchByPtr // CUDA: call{{.*}}cudaSetupArgument -- 2.40.0