diff options
author | Chris Lattner <sabre@nondot.org> | 2005-10-07 15:31:26 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-10-07 15:31:26 +0000 |
commit | 9a9719eea1d134809c582754188cc10df1021717 (patch) | |
tree | 67eb6e10040b79ab513df8fc7ae02b1a3caa71ab /lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | c4ced268d8d35942eb57aac2ce8d5dc7580cae94 (diff) |
remove debugging code
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23663 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 6e171d1251..9a69fdc5fc 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/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; } |