diff options
author | Chris Lattner <sabre@nondot.org> | 2009-01-30 01:58:19 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-01-30 01:58:19 +0000 |
commit | 072e99ef9bd7e731c06716d8a21f630e429ddd82 (patch) | |
tree | 4ae1f3605ea02a1a0e9b04220759e7f3bfea2072 /include | |
parent | 5585db0c6ee5da17b36e6c9cefeb8024968b86c7 (diff) | |
download | external_llvm-072e99ef9bd7e731c06716d8a21f630e429ddd82.zip external_llvm-072e99ef9bd7e731c06716d8a21f630e429ddd82.tar.gz external_llvm-072e99ef9bd7e731c06716d8a21f630e429ddd82.tar.bz2 |
Fix a bug in getMaxValue/getMinValue to pass the right signedness the
the constructed APSInt, patch suggested by Ben Laurie!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63362 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/ADT/APSInt.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/llvm/ADT/APSInt.h b/include/llvm/ADT/APSInt.h index 386a8ad..6fef4c7 100644 --- a/include/llvm/ADT/APSInt.h +++ b/include/llvm/ADT/APSInt.h @@ -236,16 +236,16 @@ public: /// getMaxValue - Return the APSInt representing the maximum integer value /// with the given bit width and signedness. - static APSInt getMaxValue(uint32_t numBits, bool Signed) { - return APSInt(Signed ? APInt::getSignedMaxValue(numBits) - : APInt::getMaxValue(numBits), Signed); + static APSInt getMaxValue(uint32_t numBits, bool Unsigned) { + return APSInt(Unsigned ? APInt::getMaxValue(numBits) + : APInt::getSignedMaxValue(numBits), Unsigned); } /// getMinValue - Return the APSInt representing the minimum integer value /// with the given bit width and signedness. - static APSInt getMinValue(uint32_t numBits, bool Signed) { - return APSInt(Signed ? APInt::getSignedMinValue(numBits) - : APInt::getMinValue(numBits), Signed); + static APSInt getMinValue(uint32_t numBits, bool Unsigned) { + return APSInt(Unsigned ? APInt::getMinValue(numBits) + : APInt::getSignedMinValue(numBits), Unsigned); } /// Profile - Used to insert APSInt objects, or objects that contain APSInt |