diff options
Diffstat (limited to 'lld/COFF/Writer.cpp')
| -rw-r--r-- | lld/COFF/Writer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/COFF/Writer.cpp b/lld/COFF/Writer.cpp index 5c242e4dc5d..49b5de5da7b 100644 --- a/lld/COFF/Writer.cpp +++ b/lld/COFF/Writer.cpp @@ -222,7 +222,7 @@ void Writer::createImportTables() { Text->addChunk(cast<DefinedImportThunk>(B)->getChunk()); continue; } - if (Config->DelayLoads.count(Import->getDLLName())) { + if (Config->DelayLoads.count(Import->getDLLName().lower())) { DelayIdata.add(Import); } else { Idata.add(Import); |

