blob: 8fec44e777b5ce519bac951ae22d20e62b5c48f1 [file] [log] [blame]
Nick Kledzikabb69812012-05-31 22:34:00 +00001//===- lib/ReaderWriter/PECOFF/WriterPECOFF.cpp ---------------------------===//
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#include "lld/ReaderWriter/WriterPECOFF.h"
11
12#include "llvm/Support/Debug.h"
13
14
15namespace lld {
16namespace pe_coff {
17
18// define PE/COFF writer class here
19
20
21} // namespace pe_coff
22
23Writer* createWriterPECOFF(const WriterOptionsPECOFF &options) {
24 assert(0 && "PE/COFF support not implemented yet");
25 return nullptr;
26}
27
28WriterOptionsPECOFF::WriterOptionsPECOFF() {
29}
30
31WriterOptionsPECOFF::~WriterOptionsPECOFF() {
32}
33
34} // namespace lld
35