diff options
Diffstat (limited to 'lld/lib/Core/LinkingContext.cpp')
-rw-r--r-- | lld/lib/Core/LinkingContext.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lld/lib/Core/LinkingContext.cpp b/lld/lib/Core/LinkingContext.cpp index 75baf7ac918..7d066c12ec2 100644 --- a/lld/lib/Core/LinkingContext.cpp +++ b/lld/lib/Core/LinkingContext.cpp @@ -33,11 +33,6 @@ std::error_code LinkingContext::writeFile(const File &linkedFile) const { return this->writer().writeFile(linkedFile, _outputPath); } -void LinkingContext::createImplicitFiles( - std::vector<std::unique_ptr<File>> &result) { - this->writer().createImplicitFiles(result); -} - std::unique_ptr<File> LinkingContext::createEntrySymbolFile() const { return createEntrySymbolFile("<command line option -e>"); } @@ -77,6 +72,4 @@ void LinkingContext::createInternalFiles( result.push_back(std::move(file)); } -void LinkingContext::addPasses(PassManager &pm) {} - } // end namespace lld |