]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lld/COFF/Writer.h
Merge ^/head r307383 through r307735.
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lld / COFF / Writer.h
1 //===- Writer.h -------------------------------------------------*- C++ -*-===//
2 //
3 //                             The LLVM Linker
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #ifndef LLD_COFF_WRITER_H
11 #define LLD_COFF_WRITER_H
12
13 #include <vector>
14
15 namespace lld {
16 namespace coff {
17
18 class Chunk;
19 class OutputSection;
20
21 void writeResult(SymbolTable *T);
22
23 }
24 }
25
26 #endif