We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76ee2d3 commit 9e66d54Copy full SHA for 9e66d54
llvm/include/llvm/ExecutionEngine/Orc/COFFPlatform.h
@@ -202,8 +202,6 @@ class COFFPlatform : public Platform {
202
203
DenseMap<JITDylib *, SymbolLookupSet> RegisteredInitSymbols;
204
205
- std::set<std::string> DylibsToPreload;
206
-
207
std::mutex PlatformMutex;
208
};
209
llvm/lib/ExecutionEngine/Orc/COFFPlatform.cpp
@@ -401,6 +401,7 @@ COFFPlatform::COFFPlatform(
401
}
402
VCRuntimeBootstrap = std::move(*VCRT);
403
404
+ std::set<std::string> DylibsToPreload;
405
for (auto &Lib : OrcRuntimeGenerator->getImportedDynamicLibraries())
406
DylibsToPreload.insert(Lib);
407
0 commit comments