diff options
author | Chris Lattner <sabre@nondot.org> | 2006-10-13 22:46:18 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-10-13 22:46:18 +0000 |
commit | 45ffb1eb708f6c9d82bd906d4cf61b7592b955d3 (patch) | |
tree | 9b14c7ccca6451217eebe1877c9fc83be858015c /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | a47294ed7a45637317e5a9f7770c22090c08c840 (diff) | |
download | bcm5719-llvm-45ffb1eb708f6c9d82bd906d4cf61b7592b955d3.tar.gz bcm5719-llvm-45ffb1eb708f6c9d82bd906d4cf61b7592b955d3.zip |
Fix a bug where we incorrectly turned '(X & 0) == 0' into '(X & 0) >> -1',
which is undefined. "0" isn't a power of 2.
llvm-svn: 30947
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 9c55919e979..00293814b06 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -910,7 +910,7 @@ SDOperand SelectionDAG::SimplifySetCC(MVT::ValueType VT, SDOperand N1, dyn_cast<ConstantSDNode>(N1.getOperand(1))) { if (Cond == ISD::SETNE && C2 == 0) {// (X & 8) != 0 --> (X & 8) >> 3 // Perform the xform if the AND RHS is a single bit. - if ((AndRHS->getValue() & (AndRHS->getValue()-1)) == 0) { + if (isPowerOf2_64(AndRHS->getValue())) { return getNode(ISD::SRL, VT, N1, getConstant(Log2_64(AndRHS->getValue()), TLI.getShiftAmountTy())); @@ -918,7 +918,7 @@ SDOperand SelectionDAG::SimplifySetCC(MVT::ValueType VT, SDOperand N1, } else if (Cond == ISD::SETEQ && C2 == AndRHS->getValue()) { // (X & 8) == 8 --> (X & 8) >> 3 // Perform the xform if C2 is a single bit. - if ((C2 & (C2-1)) == 0) { + if (isPowerOf2_64(C2)) { return getNode(ISD::SRL, VT, N1, getConstant(Log2_64(C2),TLI.getShiftAmountTy())); } |