[globalisel][tablegen] Fix undefined references to dump()

Two debugging statements snuck into the commit.

llvm-svn: 315783
This commit is contained in:
Daniel Sanders 2017-10-14 00:56:01 +00:00
parent fddfb5ad4c
commit ab3a464482
1 changed files with 0 additions and 2 deletions

View File

@ -344,8 +344,6 @@ bool InstructionSelector::executeMatchTable(
<< OtherOpIdx << "])\n");
assert(State.MIs[InsnID] != nullptr && "Used insn before defined");
assert(State.MIs[OtherInsnID] != nullptr && "Used insn before defined");
State.MIs[InsnID]->getOperand(OpIdx).dump();
State.MIs[OtherInsnID]->getOperand(OtherOpIdx).dump();
if (!State.MIs[InsnID]->getOperand(OpIdx).isIdenticalTo(
State.MIs[OtherInsnID]->getOperand(OtherInsnID))) {
if (handleReject() == RejectAndGiveUp)