Skip to content

Commit b357495

Browse files
authored
[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.
1 parent 48da1e2 commit b357495

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Transforms/IPO/Internalize.cpp

+1-1
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)