diff options
Diffstat (limited to 'include/lld/Core/Reader.h')
-rw-r--r-- | include/lld/Core/Reader.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/include/lld/Core/Reader.h b/include/lld/Core/Reader.h index 9324da475e3d..66df4380dc76 100644 --- a/include/lld/Core/Reader.h +++ b/include/lld/Core/Reader.h @@ -27,17 +27,14 @@ class IO; } namespace lld { -class ELFLinkingContext; class File; class LinkingContext; -class PECOFFLinkingContext; class MachOLinkingContext; /// \brief An abstract class for reading object files, library files, and /// executable files. /// -/// Each file format (e.g. ELF, mach-o, PECOFF, etc) have a concrete -/// subclass of Reader. +/// Each file format (e.g. mach-o, etc) has a concrete subclass of Reader. class Reader { public: virtual ~Reader() {} @@ -114,11 +111,7 @@ public: // as parameters to the addSupport*() method. void addSupportArchives(bool logLoading); void addSupportYamlFiles(); - void addSupportCOFFObjects(PECOFFLinkingContext &); - void addSupportCOFFImportLibraries(PECOFFLinkingContext &); void addSupportMachOObjects(MachOLinkingContext &); - void addSupportELFObjects(ELFLinkingContext &); - void addSupportELFDynamicSharedObjects(ELFLinkingContext &); /// To convert between kind values and names, the registry walks the list /// of registered kind tables. Each table is a zero terminated array of |