//===- Writer.h -------------------------------------------------*- C++ -*-===// // // The LLVM Linker // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// #ifndef LLD_ELF_WRITER_H #define LLD_ELF_WRITER_H #include namespace llvm { class StringRef; } namespace lld { namespace elf { template class InputSectionBase; template class ObjectFile; template class SymbolTable; template void writeResult(SymbolTable *Symtab); template void markLive(); template llvm::StringRef getOutputSectionName(InputSectionBase *S); template void reportDiscarded(InputSectionBase *IS, const std::unique_ptr> &File); } } #endif