Files
clang-p2996/lld/lib/ReaderWriter/ELF/WriterELF.cpp
Nick Kledzik abb6981f68 Major refactoring: Remove Platform concept. In its place there are
now Reader and Writer subclasses for each file format.  Each Reader and
Writer subclass defines an "options" class which controls how that Reader
or Writer operates.

llvm-svn: 157774
2012-05-31 22:34:00 +00:00

36 lines
730 B
C++

//===- lib/ReaderWriter/ELF/WriterELF.cpp ---------------------------------===//
//
// The LLVM Linker
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include "lld/ReaderWriter/WriterELF.h"
#include "llvm/Support/Debug.h"
namespace lld {
namespace elf {
// define ELF writer class here
} // namespace elf
Writer* createWriterELF(const WriterOptionsELF &options) {
assert(0 && "ELF support not implemented yet");
return nullptr;
}
WriterOptionsELF::WriterOptionsELF() {
}
WriterOptionsELF::~WriterOptionsELF() {
}
} // namespace lld