[PATCH] D145710: [ORC] Fix name shadowing issue, NFC.
Aman LaChapelle via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 9 14:07:59 PST 2023
This revision was automatically updated to reflect the committed changes.
Closed by commit rG82e177bbde88: [ORC] Fix name shadowing issue, NFC. (authored by bzcheeseman).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D145710/new/
https://reviews.llvm.org/D145710
Files:
llvm/include/llvm/ExecutionEngine/Orc/COFFPlatform.h
llvm/lib/ExecutionEngine/Orc/COFFPlatform.cpp
Index: llvm/lib/ExecutionEngine/Orc/COFFPlatform.cpp
===================================================================
--- llvm/lib/ExecutionEngine/Orc/COFFPlatform.cpp
+++ llvm/lib/ExecutionEngine/Orc/COFFPlatform.cpp
@@ -352,11 +352,11 @@
COFFPlatform::COFFPlatform(ExecutionSession &ES,
ObjectLinkingLayer &ObjLinkingLayer,
JITDylib &PlatformJD, const char *OrcRuntimePath,
- LoadDynamicLibrary LoadDynLibrary,
+ LoadDynamicLibrary LoadDynamicLibrary,
bool StaticVCRuntime, const char *VCRuntimePath,
Error &Err)
: ES(ES), ObjLinkingLayer(ObjLinkingLayer),
- LoadDynLibrary(std::move(LoadDynLibrary)),
+ LoadDynLibrary(std::move(LoadDynamicLibrary)),
StaticVCRuntime(StaticVCRuntime),
COFFHeaderStartSymbol(ES.intern("__ImageBase")) {
ErrorAsOutParameter _(&Err);
Index: llvm/include/llvm/ExecutionEngine/Orc/COFFPlatform.h
===================================================================
--- llvm/include/llvm/ExecutionEngine/Orc/COFFPlatform.h
+++ llvm/include/llvm/ExecutionEngine/Orc/COFFPlatform.h
@@ -138,7 +138,7 @@
COFFPlatform(ExecutionSession &ES, ObjectLinkingLayer &ObjLinkingLayer,
JITDylib &PlatformJD, const char *OrcRuntimePath,
- LoadDynamicLibrary LoadDynLibrary, bool StaticVCRuntime,
+ LoadDynamicLibrary LoadDynamicLibrary, bool StaticVCRuntime,
const char *VCRuntimePath, Error &Err);
// Associate COFFPlatform JIT-side runtime support functions with handlers.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D145710.503931.patch
Type: text/x-patch
Size: 1658 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230309/3e302278/attachment.bin>
More information about the llvm-commits
mailing list