diff options
author | Chris Lattner <sabre@nondot.org> | 2009-04-25 18:34:04 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-04-25 18:34:04 +0000 |
commit | 38300e91f5ff2d427d98f81fb25df8cc2800d985 (patch) | |
tree | a5043c6287b94e8cb909e8b2be4d3858676abb7d /lib/Support/APInt.cpp | |
parent | bc58322d6a15fc06207a9e0c01786aa140fe9a29 (diff) |
Fix PR4040: APInt's string constructor is too strict
patch by Jeff Yasskin!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@70058 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/APInt.cpp')
-rw-r--r-- | lib/Support/APInt.cpp | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/lib/Support/APInt.cpp b/lib/Support/APInt.cpp index 1cabe0f03e..8ac589c865 100644 --- a/lib/Support/APInt.cpp +++ b/lib/Support/APInt.cpp @@ -1918,9 +1918,9 @@ void APInt::fromString(unsigned numbits, const char *str, unsigned slen, if (isNeg) str++, slen--; assert((slen <= numbits || radix != 2) && "Insufficient bit width"); - assert((slen*3 <= numbits || radix != 8) && "Insufficient bit width"); - assert((slen*4 <= numbits || radix != 16) && "Insufficient bit width"); - assert(((slen*64)/22 <= numbits || radix != 10) && "Insufficient bit width"); + assert(((slen-1)*3 <= numbits || radix != 8) && "Insufficient bit width"); + assert(((slen-1)*4 <= numbits || radix != 16) && "Insufficient bit width"); + assert((((slen-1)*64)/22 <= numbits || radix != 10) && "Insufficient bit width"); // Allocate memory if (!isSingleWord()) @@ -1961,10 +1961,12 @@ void APInt::fromString(unsigned numbits, const char *str, unsigned slen, } // Shift or multiply the value by the radix - if (shift) - *this <<= shift; - else - *this *= apradix; + if (slen > 1) { + if (shift) + *this <<= shift; + else + *this *= apradix; + } // Add in the digit we just interpreted if (apdigit.isSingleWord()) |