diff options
author | Rui Ueyama <ruiu@google.com> | 2016-03-02 01:34:34 +0000 |
---|---|---|
committer | Rui Ueyama <ruiu@google.com> | 2016-03-02 01:34:34 +0000 |
commit | 0c23bcb252867be40a575ce95be79c0292b53be4 (patch) | |
tree | aa322ead98184d0f35c0d43fcf97286fa6e2ef61 /lld/lib/Core/LinkingContext.cpp | |
parent | 01ba8b2f7b6073fce8c5b92175d5b1ae9e653b4c (diff) | |
download | bcm5719-llvm-0c23bcb252867be40a575ce95be79c0292b53be4.tar.gz bcm5719-llvm-0c23bcb252867be40a575ce95be79c0292b53be4.zip |
Remove default implementations that are always overridden by subclasses.
llvm-svn: 262444
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 |