Use APInt instead of zext value.
authorBill Wendling <isanbard@gmail.com>
Wed, 3 Mar 2010 01:58:01 +0000 (01:58 +0000)
committerBill Wendling <isanbard@gmail.com>
Wed, 3 Mar 2010 01:58:01 +0000 (01:58 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97631 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/DAGCombiner.cpp

index 5cd70c9cd0a48c8889c6d670522f54d37d136295..e4ff44d2a2ec850d407f273a5d66fd7a2c57c8ef 100644 (file)
@@ -2029,7 +2029,7 @@ SDValue DAGCombiner::visitOR(SDNode *N) {
   if (N1C && N0.getOpcode() == ISD::AND && N0.getNode()->hasOneUse() &&
              isa<ConstantSDNode>(N0.getOperand(1))) {
     ConstantSDNode *C1 = cast<ConstantSDNode>(N0.getOperand(1));
-    if ((C1->getZExtValue() & N1C->getZExtValue()) != 0)
+    if ((C1->getAPIntValue() & N1C->getAPIntValue()) != 0)
       return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
                          DAG.getNode(ISD::OR, N0.getDebugLoc(), VT,
                                      N0.getOperand(0), N1),