Files
clang-p2996/lld/lib/ReaderWriter/Writer.cpp
Shankar Easwaran a96f3a3da4 [lld][InputGraph] Change the Resolver to use inputGraph
Changes :-

a) Functionality in InputGraph to insert Input elements at any position
b) Functionality in the Resolver to use nextFile
c) Move the functionality of assigning file ordinals to InputGraph
d) Changes all inputs to MemoryBuffers
e) Remove LinkerInput, InputFiles, ReaderArchive

llvm-svn: 192081
2013-10-07 02:47:09 +00:00

24 lines
573 B
C++

//===- lib/ReaderWriter/Writer.cpp ----------------------------------------===//
//
// The LLVM Linker
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include "lld/Core/File.h"
#include "lld/ReaderWriter/Writer.h"
namespace lld {
Writer::Writer() {
}
Writer::~Writer() {
}
bool Writer::createImplicitFiles(std::vector<std::unique_ptr<File> > &) {
return true;
}
} // end namespace lld