summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2012-11-27 09:55:56 +0000
committerBill Wendling <isanbard@gmail.com>2012-11-27 09:55:56 +0000
commitee5984df399aa360047e2e4ac9209bd886bc4961 (patch)
tree37b61bcdea511e1e137a16c16bb7def649f47f49 /llvm/lib/Bitcode/Reader/BitcodeReader.cpp
parent69a071d5a676d66761dc9808265795cff17d1b80 (diff)
downloadbcm5719-llvm-ee5984df399aa360047e2e4ac9209bd886bc4961.tar.gz
bcm5719-llvm-ee5984df399aa360047e2e4ac9209bd886bc4961.zip
Remove the dependent libraries feature.
The dependent libraries feature was never used and has bit-rotted. Remove it. llvm-svn: 168694
Diffstat (limited to 'llvm/lib/Bitcode/Reader/BitcodeReader.cpp')
-rw-r--r--llvm/lib/Bitcode/Reader/BitcodeReader.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
index 944a3255cd8..dcbd68aee27 100644
--- a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
+++ b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
@@ -1564,13 +1564,6 @@ bool BitcodeReader::ParseModule(bool Resume) {
TheModule->setModuleInlineAsm(S);
break;
}
- case bitc::MODULE_CODE_DEPLIB: { // DEPLIB: [strchr x N]
- std::string S;
- if (ConvertToString(Record, 0, S))
- return Error("Invalid MODULE_CODE_DEPLIB record");
- TheModule->addLibrary(S);
- break;
- }
case bitc::MODULE_CODE_SECTIONNAME: { // SECTIONNAME: [strchr x N]
std::string S;
if (ConvertToString(Record, 0, S))
OpenPOWER on IntegriCloud