Nick Kledzik | abb6981 | 2012-05-31 22:34:00 +0000 | [diff] [blame^] | 1 | //===- lib/ReaderWriter/ELF/ReaderELF.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/ReaderELF.h" |
| 11 | #include "lld/Core/File.h" |
| 12 | |
| 13 | #include "llvm/Support/Casting.h" |
| 14 | #include "llvm/Support/ErrorHandling.h" |
| 15 | #include "llvm/Support/Memory.h" |
| 16 | #include "llvm/Support/MemoryBuffer.h" |
| 17 | #include "llvm/Support/raw_ostream.h" |
| 18 | #include "llvm/Support/system_error.h" |
| 19 | |
| 20 | #include <map> |
| 21 | #include <vector> |
| 22 | |
| 23 | |
| 24 | namespace lld { |
| 25 | |
| 26 | ReaderOptionsELF::ReaderOptionsELF() { |
| 27 | } |
| 28 | |
| 29 | ReaderOptionsELF::~ReaderOptionsELF() { |
| 30 | } |
| 31 | |
| 32 | |
| 33 | |
| 34 | Reader* createReaderELF(const ReaderOptionsELF &options) { |
| 35 | assert(0 && "ELF Reader not yet implemented"); |
| 36 | return nullptr; |
| 37 | } |
| 38 | |
| 39 | |
| 40 | } // namespace |
| 41 | |