forked from OSchip/llvm-project
[ConstantRange] Remove a temporary APInt I meant to delete in r300621. NFC
llvm-svn: 301737
This commit is contained in:
parent
ee4f22dc2d
commit
6fe50f84c4
|
@ -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))
|
||||
|
|
Loading…
Reference in New Issue