forked from OSchip/llvm-project
25 lines
512 B
C++
25 lines
512 B
C++
//===- 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
|
|
|
|
namespace lld {
|
|
namespace elf2 {
|
|
|
|
class SymbolTable;
|
|
|
|
template <class ELFT>
|
|
void writeResult(SymbolTable *Symtab);
|
|
|
|
}
|
|
}
|
|
|
|
#endif
|