Nick Kledzik | abb6981 | 2012-05-31 22:34:00 +0000 | [diff] [blame^] | 1 | //===- 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 | |
| 15 | namespace lld { |
| 16 | namespace pe_coff { |
| 17 | |
| 18 | // define PE/COFF writer class here |
| 19 | |
| 20 | |
| 21 | } // namespace pe_coff |
| 22 | |
| 23 | Writer* createWriterPECOFF(const WriterOptionsPECOFF &options) { |
| 24 | assert(0 && "PE/COFF support not implemented yet"); |
| 25 | return nullptr; |
| 26 | } |
| 27 | |
| 28 | WriterOptionsPECOFF::WriterOptionsPECOFF() { |
| 29 | } |
| 30 | |
| 31 | WriterOptionsPECOFF::~WriterOptionsPECOFF() { |
| 32 | } |
| 33 | |
| 34 | } // namespace lld |
| 35 | |