Forgot one remaining call to getSExtValue().

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60289 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp
index 93510f0..8716e9a 100644
--- a/lib/Transforms/Scalar/InstructionCombining.cpp
+++ b/lib/Transforms/Scalar/InstructionCombining.cpp
@@ -2968,7 +2968,7 @@
       if (Value *LHSNeg = dyn_castNegVal(Op0)) {
         if (ConstantInt *CI = dyn_cast<ConstantInt>(LHSNeg)) {
           ConstantInt *CINeg = cast<ConstantInt>(ConstantExpr::getNeg(CI));
-          APInt CINegAPI(CINeg->getBitWidth(), CINeg->getSExtValue(), true);
+          APInt CINegAPI(CINeg->getValue());
 
           if ((CI->getValue().isNegative() && CINegAPI.slt(TwoToExp - 1)) ||
               (CI->getValue().isNonNegative() && CINegAPI.sgt(TwoToExp*NegOne)))