Remove accidentally added debugging code from D103135

This commit is contained in:
Arthur Eubanks 2021-06-14 11:09:41 -07:00
parent 8c8dbc1082
commit 75d3b46ad2
1 changed files with 1 additions and 5 deletions

View File

@ -99,12 +99,8 @@ Constant *BitcodeReaderValueList::getConstantFwdRef(unsigned Idx, Type *Ty) {
resize(Idx + 1);
if (Value *V = ValuePtrs[Idx]) {
if (Ty != V->getType()) {
Ty->dump();
V->getType()->dump();
V->dump();
if (Ty != V->getType())
report_fatal_error("Type mismatch in constant table!");
}
return cast<Constant>(V);
}