mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-09 12:32:33 +03:00
fix typo
This commit is contained in:
parent
fceff00d90
commit
dc2004fe64
1 changed files with 2 additions and 2 deletions
|
@ -141,7 +141,7 @@ GlobalValsMap createGlobalValsFilter(IRState *irs) {
|
|||
return ret;
|
||||
}
|
||||
|
||||
void fixRtMudule(llvm::Module &newModule,
|
||||
void fixRtModule(llvm::Module &newModule,
|
||||
const decltype(IRState::runtimeCompiledFunctions) &funcs) {
|
||||
std::unordered_map<std::string, std::string> thunk2func;
|
||||
std::unordered_set<std::string> externalFuncs;
|
||||
|
@ -680,7 +680,7 @@ void generateBitcodeForRuntimeCompile(IRState *irs) {
|
|||
if (opts::runtimeCompileTlsWorkaround) {
|
||||
replaceDynamicThreadLocals(irs->module, *newModule, filter);
|
||||
}
|
||||
fixRtMudule(*newModule, irs->runtimeCompiledFunctions);
|
||||
fixRtModule(*newModule, irs->runtimeCompiledFunctions);
|
||||
// hideExternalSymbols(*newModule, filter);
|
||||
|
||||
setupModuleBitcodeData(*newModule, irs, filter);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue