r330793 - Fix failure in lit test kernel-call.cu
Yaxun Liu via cfe-commits
cfe-commits at lists.llvm.org
Tue Apr 24 19:34:04 PDT 2018
Author: yaxunl
Date: Tue Apr 24 19:34:04 2018
New Revision: 330793
URL: http://llvm.org/viewvc/llvm-project?rev=330793&view=rev
Log:
Fix failure in lit test kernel-call.cu
There is signext on ppc64. Just remove check for function argument.
Modified:
cfe/trunk/test/CodeGenCUDA/kernel-call.cu
Modified: cfe/trunk/test/CodeGenCUDA/kernel-call.cu
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCUDA/kernel-call.cu?rev=330793&r1=330792&r2=330793&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenCUDA/kernel-call.cu (original)
+++ cfe/trunk/test/CodeGenCUDA/kernel-call.cu Tue Apr 24 19:34:04 2018
@@ -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
More information about the cfe-commits
mailing list