From: Daniel Sanders Date: Sat, 14 Oct 2017 00:56:01 +0000 (+0000) Subject: [globalisel][tablegen] Fix undefined references to dump() X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dde857cfc73b7a84b189a2fdca2ae45b4cfb7b24;p=llvm [globalisel][tablegen] Fix undefined references to dump() Two debugging statements snuck into the commit. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@315783 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/CodeGen/GlobalISel/InstructionSelectorImpl.h b/include/llvm/CodeGen/GlobalISel/InstructionSelectorImpl.h index e01b5e77de3..d2da152cf39 100644 --- a/include/llvm/CodeGen/GlobalISel/InstructionSelectorImpl.h +++ b/include/llvm/CodeGen/GlobalISel/InstructionSelectorImpl.h @@ -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)