diff options
Diffstat (limited to 'lld/lib/ReaderWriter/ELF/Writer.h')
-rw-r--r-- | lld/lib/ReaderWriter/ELF/Writer.h | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/lld/lib/ReaderWriter/ELF/Writer.h b/lld/lib/ReaderWriter/ELF/Writer.h deleted file mode 100644 index 8b3e8f90638..00000000000 --- a/lld/lib/ReaderWriter/ELF/Writer.h +++ /dev/null @@ -1,35 +0,0 @@ -//===- lib/ReaderWriter/ELF/Writer.h --------------------------------------===// -// -// The LLVM Linker -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// - -#ifndef LLD_READER_WRITER_ELF_WRITER_H -#define LLD_READER_WRITER_ELF_WRITER_H - -#include "lld/Core/File.h" -#include "lld/Core/Writer.h" - -namespace lld { -namespace elf { -/// \brief The Writer class is a base class for the linker to write -/// various kinds of ELF files. -class ELFWriter : public Writer { -public: - /// \brief builds the chunks that needs to be written to the output - /// ELF file - virtual void buildChunks(const File &file) = 0; - - /// \brief Writes the chunks into the output file specified by path - std::error_code writeFile(const File &file, StringRef path) override = 0; - - /// \brief Get the virtual address of \p atom after layout. - virtual uint64_t addressOfAtom(const Atom *atom) = 0; -}; -} // end namespace elf -} // end namespace lld - -#endif // LLD_READER_WRITER_ELF_WRITER_H |