forked from OSchip/llvm-project
Remove accidentally added debugging code from D103135
This commit is contained in:
parent
8c8dbc1082
commit
75d3b46ad2
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue