diff options
author | Vincent Lejeune <vljn@ovi.com> | 2013-10-15 22:48:51 +0000 |
---|---|---|
committer | Vincent Lejeune <vljn@ovi.com> | 2013-10-15 22:48:51 +0000 |
commit | 484091a50aa27dbf8d7483352b7f311def5d6036 (patch) | |
tree | 582bef70d9465188bdc053e77be198b22788c27f /lib | |
parent | b32b0376d4ac04fc2401e70aa0bdd2f6ce5a8968 (diff) | |
download | external_llvm-484091a50aa27dbf8d7483352b7f311def5d6036.zip external_llvm-484091a50aa27dbf8d7483352b7f311def5d6036.tar.gz external_llvm-484091a50aa27dbf8d7483352b7f311def5d6036.tar.bz2 |
R600/SI: Remove some leftover MI dump call
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192743 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/R600/SIISelLowering.cpp | 1 | ||||
-rw-r--r-- | lib/Target/R600/SIInstrInfo.cpp | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/lib/Target/R600/SIISelLowering.cpp b/lib/Target/R600/SIISelLowering.cpp index 098ca7f..2c9270e 100644 --- a/lib/Target/R600/SIISelLowering.cpp +++ b/lib/Target/R600/SIISelLowering.cpp @@ -684,7 +684,6 @@ SDValue SITargetLowering::PerformDAGCombine(SDNode *N, switch (N->getOpcode()) { default: break; case ISD::SELECT_CC: { - N->dump(); ConstantSDNode *True, *False; // i1 selectcc(l, r, -1, 0, cc) -> i1 setcc(l, r, cc) if ((True = dyn_cast<ConstantSDNode>(N->getOperand(2))) diff --git a/lib/Target/R600/SIInstrInfo.cpp b/lib/Target/R600/SIInstrInfo.cpp index f838701..75cff7e 100644 --- a/lib/Target/R600/SIInstrInfo.cpp +++ b/lib/Target/R600/SIInstrInfo.cpp @@ -281,7 +281,6 @@ bool SIInstrInfo::verifyInstruction(const MachineInstr *MI, if (isVOP1(Opcode) || isVOP2(Opcode) || isVOP3(Opcode) || isVOPC(Opcode)) { unsigned ConstantBusCount = 0; unsigned SGPRUsed = AMDGPU::NoRegister; - MI->dump(); for (int i = 0, e = MI->getNumOperands(); i != e; ++i) { const MachineOperand &MO = MI->getOperand(i); if (MO.isReg() && MO.isUse() && |