[LLD] [COFF] Add a couple "MinGW only" comments re linking against DLLs. NFC.

This was requested in the post-commit review of D104530.
This commit is contained in:
Martin Storsjö 2021-07-20 23:56:00 +03:00
parent d1438c1bd2
commit e0e09481ee
2 changed files with 2 additions and 1 deletions

View file

@ -395,7 +395,7 @@ private:
std::vector<Symbol *> symbols;
};
// .dll file.
// .dll file. MinGW only.
class DLLFile : public InputFile {
public:
explicit DLLFile(MemoryBufferRef m) : InputFile(DLLKind, m) {}

View file

@ -311,6 +311,7 @@ public:
LazyObjFile *file;
};
// MinGW only.
class LazyDLLSymbol : public Symbol {
public:
LazyDLLSymbol(DLLFile *f, DLLFile::Symbol *s, StringRef n)