Skip to content

Commit

Permalink
[globalisel][tablegen] Fix undefined references to dump()
Browse files Browse the repository at this point in the history
Two debugging statements snuck into the commit.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@315783 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
dsandersllvm committed Oct 14, 2017
1 parent 3eee4db commit dde857c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions include/llvm/CodeGen/GlobalISel/InstructionSelectorImpl.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit dde857c

Please sign in to comment.