projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c4ced26
)
remove debugging code
author
Chris Lattner
<sabre@nondot.org>
Fri, 7 Oct 2005 15:31:26 +0000
(15:31 +0000)
committer
Chris Lattner
<sabre@nondot.org>
Fri, 7 Oct 2005 15:31:26 +0000
(15:31 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23663
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/CodeGen/SelectionDAG/SelectionDAG.cpp
patch
|
blob
|
history
diff --git
a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
index 6e171d1251ba2226ef1758dc51d4a261b2eeef7b..9a69fdc5fca14a4540f73a48b18e92bc1560886f 100644
(file)
--- 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;
}