1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00

[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 cabcb00592
commit 5b568c3f23

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)