From 072e99ef9bd7e731c06716d8a21f630e429ddd82 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 30 Jan 2009 01:58:19 +0000 Subject: [PATCH] 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 --- include/llvm/ADT/APSInt.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/llvm/ADT/APSInt.h b/include/llvm/ADT/APSInt.h index 386a8ad18df..6fef4c7a0d0 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 -- 2.34.1