Skip to content

Commit 0bc2eb7

Browse files
jhuber6tstellar
authored andcommitted
[OpenMP] Fix misspelled symbol name (llvm#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. (cherry picked from commit b357495)
1 parent 160e6ac commit 0bc2eb7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Transforms/IPO/Internalize.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ bool InternalizePass::internalizeModule(Module &M) {
235235

236236
// Preserve the RPC interface for GPU host callbacks when internalizing.
237237
if (Triple(M.getTargetTriple()).isNVPTX())
238-
AlwaysPreserved.insert("__llvm_rpc_server");
238+
AlwaysPreserved.insert("__llvm_rpc_client");
239239

240240
// Mark all functions not in the api as internal.
241241
IsWasm = Triple(M.getTargetTriple()).isOSBinFormatWasm();

0 commit comments

Comments
 (0)