[ConstantRange] Remove a temporary APInt I meant to delete in r300621. NFC

llvm-svn: 301737
This commit is contained in:
Craig Topper 2017-04-29 05:24:34 +00:00
parent ee4f22dc2d
commit 6fe50f84c4
1 changed files with 0 additions and 1 deletions

View File

@ -276,7 +276,6 @@ APInt ConstantRange::getUnsignedMin() const {
}
APInt ConstantRange::getSignedMax() const {
APInt SignedMax(APInt::getSignedMaxValue(getBitWidth()));
if (!isWrappedSet()) {
APInt UpperMinusOne = getUpper() - 1;
if (getLower().sle(UpperMinusOne))