Fix a bug in getMaxValue/getMinValue to pass the right signedness the

the constructed APSInt, patch suggested by Ben Laurie!

llvm-svn: 63362
This commit is contained in:
Chris Lattner 2009-01-30 01:58:19 +00:00
parent acbb381cc4
commit caffe92d86
1 changed files with 6 additions and 6 deletions

View File

@ -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