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
24 lines
573 B
C++
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
|