[llvm] b357495 - [OpenMP] Fix misspelled symbol name (#126120)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 6 12:13:46 PST 2025
Author: Joseph Huber
Date: 2025-02-06T14:13:43-06:00
New Revision: b35749559ddd9b2d4e044ef71d13d888b8a3d8cb
URL: https://github.com/llvm/llvm-project/commit/b35749559ddd9b2d4e044ef71d13d888b8a3d8cb
DIFF: https://github.com/llvm/llvm-project/commit/b35749559ddd9b2d4e044ef71d13d888b8a3d8cb.diff
LOG: [OpenMP] Fix misspelled symbol name (#126120)
Summary:
This is supposed to be `__llvm_rpc_client` but I screwed it up and
didn't notice at the time. Will need to be backported.
Added:
Modified:
llvm/lib/Transforms/IPO/Internalize.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Transforms/IPO/Internalize.cpp b/llvm/lib/Transforms/IPO/Internalize.cpp
index f0270600aa2663..404102eef89fc2 100644
--- a/llvm/lib/Transforms/IPO/Internalize.cpp
+++ b/llvm/lib/Transforms/IPO/Internalize.cpp
@@ -235,7 +235,7 @@ bool InternalizePass::internalizeModule(Module &M) {
// Preserve the RPC interface for GPU host callbacks when internalizing.
if (Triple(M.getTargetTriple()).isNVPTX())
- AlwaysPreserved.insert("__llvm_rpc_server");
+ AlwaysPreserved.insert("__llvm_rpc_client");
// Mark all functions not in the api as internal.
IsWasm = Triple(M.getTargetTriple()).isOSBinFormatWasm();
More information about the llvm-commits
mailing list