Bitcode: Remove reader support for MODULE_CODE_PURGEVALS.
Support for writing this module code was removed in r73220, which was well before the LLVM 3.0 release, so we do not need to be able to understand it for backwards compatibility. Differential Revision: https://reviews.llvm.org/D31563 llvm-svn: 299370
This commit is contained in:
@@ -3060,13 +3060,6 @@ Error BitcodeReader::parseModule(uint64_t ResumeBit,
|
||||
IndirectSymbolInits.push_back(std::make_pair(NewGA, Val));
|
||||
break;
|
||||
}
|
||||
/// MODULE_CODE_PURGEVALS: [numvals]
|
||||
case bitc::MODULE_CODE_PURGEVALS:
|
||||
// Trim down the value list to the specified size.
|
||||
if (Record.size() < 1 || Record[0] > ValueList.size())
|
||||
return error("Invalid record");
|
||||
ValueList.shrinkTo(Record[0]);
|
||||
break;
|
||||
/// MODULE_CODE_VSTOFFSET: [offset]
|
||||
case bitc::MODULE_CODE_VSTOFFSET:
|
||||
if (Record.size() < 1)
|
||||
|
||||
Reference in New Issue
Block a user