[llvm] [llvm] Preserve existing calling conv when auto-upgrading nvvm.annota… (PR #125568)

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Mon Feb 3 17:00:49 PST 2025


================
@@ -5023,8 +5023,10 @@ bool llvm::UpgradeDebugInfo(Module &M) {
 bool static upgradeSingleNVVMAnnotation(GlobalValue *GV, StringRef K,
                                         const Metadata *V) {
   if (K == "kernel") {
-    if (!mdconst::extract<ConstantInt>(V)->isZero())
-      cast<Function>(GV)->setCallingConv(CallingConv::PTX_Kernel);
+    auto *F = cast<Function>(GV);
+    if (!mdconst::extract<ConstantInt>(V)->isZero() &&
+        !F->hasKernelCallingConv())
----------------
arsenm wrote:

Probably should check if the CC is not CCC 

https://github.com/llvm/llvm-project/pull/125568


More information about the llvm-commits mailing list