Remove dead code.

llvm-svn: 262160
This commit is contained in:
Rui Ueyama 2016-02-28 00:37:52 +00:00
parent e0df00b91f
commit f09a6b3adb
3 changed files with 0 additions and 6 deletions

View File

@ -29,7 +29,6 @@ class IO;
namespace lld {
class File;
class LinkingContext;
class PECOFFLinkingContext;
class MachOLinkingContext;
/// \brief An abstract class for reading object files, library files, and
@ -113,8 +112,6 @@ public:
// as parameters to the addSupport*() method.
void addSupportArchives(bool logLoading);
void addSupportYamlFiles();
void addSupportCOFFObjects(PECOFFLinkingContext &);
void addSupportCOFFImportLibraries(PECOFFLinkingContext &);
void addSupportMachOObjects(MachOLinkingContext &);
/// To convert between kind values and names, the registry walks the list

View File

@ -18,7 +18,6 @@ namespace lld {
class File;
class LinkingContext;
class MachOLinkingContext;
class PECOFFLinkingContext;
/// \brief The Writer is an abstract class for writing object files, shared
/// library files, and executable files. Each file format (e.g. ELF, mach-o,
@ -41,7 +40,6 @@ protected:
};
std::unique_ptr<Writer> createWriterMachO(const MachOLinkingContext &);
std::unique_ptr<Writer> createWriterPECOFF(const PECOFFLinkingContext &);
std::unique_ptr<Writer> createWriterYAML(const LinkingContext &);
} // end namespace lld

View File

@ -29,7 +29,6 @@ namespace lld {
class LinkingContext;
class CoreLinkingContext;
class MachOLinkingContext;
class PECOFFLinkingContext;
typedef std::vector<std::unique_ptr<File>> FileVector;