blob: 0473315ae50abaaba6da1f495237369dfe6fd98c [file] [log] [blame]
Rafael Espindolabeee25e2015-08-14 14:12:54 +00001//===- Writer.h -------------------------------------------------*- C++ -*-===//
Rui Ueyama411c63602015-05-28 19:09:30 +00002//
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
Rui Ueyama411c63602015-05-28 19:09:30 +000013#include <vector>
14
15namespace lld {
16namespace coff {
17
Rui Ueyama685c41c2015-08-05 23:43:53 +000018class Chunk;
19class OutputSection;
20
Rafael Espindolab835ae82015-08-06 14:58:50 +000021void writeResult(SymbolTable *T);
Rui Ueyama685c41c2015-08-05 23:43:53 +000022
Rui Ueyama685c41c2015-08-05 23:43:53 +000023}
24}
Rui Ueyama411c63602015-05-28 19:09:30 +000025
26#endif