Skip to content

Commit 75d3b46

Browse files
committed
Remove accidentally added debugging code from D103135
1 parent 8c8dbc1 commit 75d3b46

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

llvm/lib/Bitcode/Reader/ValueList.cpp

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -99,12 +99,8 @@ Constant *BitcodeReaderValueList::getConstantFwdRef(unsigned Idx, Type *Ty) {
9999
resize(Idx + 1);
100100

101101
if (Value *V = ValuePtrs[Idx]) {
102-
if (Ty != V->getType()) {
103-
Ty->dump();
104-
V->getType()->dump();
105-
V->dump();
102+
if (Ty != V->getType())
106103
report_fatal_error("Type mismatch in constant table!");
107-
}
108104
return cast<Constant>(V);
109105
}
110106

0 commit comments

Comments
 (0)