summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-10-07 15:31:26 +0000
committerChris Lattner <sabre@nondot.org>2005-10-07 15:31:26 +0000
commitbe4bbca0ba104cc5091ad79604af13a1eac64617 (patch)
treedc78f2a92431ab04eb680ff89531e7474a1b4899 /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
parentfb12624a3f5dfc4788f15cc020b60272e54f5fa6 (diff)
downloadbcm5719-llvm-be4bbca0ba104cc5091ad79604af13a1eac64617.tar.gz
bcm5719-llvm-be4bbca0ba104cc5091ad79604af13a1eac64617.zip
remove debugging code
llvm-svn: 23663
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r--llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
index 6e171d1251b..9a69fdc5fca 100644
--- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
@@ -1581,12 +1581,8 @@ SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
// udiv instead. Handles (X&15) /s 4 -> X&15 >> 2
uint64_t SignBit = 1ULL << (MVT::getSizeInBits(VT)-1);
if (MaskedValueIsZero(N2, SignBit, TLI) &&
- MaskedValueIsZero(N1, SignBit, TLI)) {
- std::cerr << "SDIV [[";
- N1.Val->dump(); std::cerr << "]] [[";
- N2.Val->dump(); std::cerr << "]] -> udiv\n";
+ MaskedValueIsZero(N1, SignBit, TLI))
return getNode(ISD::UDIV, VT, N1, N2);
- }
break;
}
OpenPOWER on IntegriCloud