[llvm-commits] CVS: llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
Chris Lattner
lattner at cs.uiuc.edu
Fri Oct 7 08:31:37 PDT 2005
Changes in directory llvm/lib/CodeGen/SelectionDAG:
SelectionDAG.cpp updated: 1.201 -> 1.202
---
Log message:
remove debugging code
---
Diffs of the changes: (+1 -5)
SelectionDAG.cpp | 6 +-----
1 files changed, 1 insertion(+), 5 deletions(-)
Index: llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
diff -u llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:1.201 llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:1.202
--- llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:1.201 Fri Oct 7 10:29:41 2005
+++ llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp Fri Oct 7 10:31:26 2005
@@ -1581,12 +1581,8 @@
// 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;
}
More information about the llvm-commits
mailing list