Don't die with an assertion if the Result bitwidth is already correct. This

fixes an assert reading "1239123123123123" when the result is already 64-bit.

llvm-svn: 155329
This commit is contained in:
Chris Lattner 2012-04-23 00:27:54 +00:00
parent e32c23a5e0
commit 5e14666149
1 changed files with 1 additions and 1 deletions

View File

@ -391,7 +391,7 @@ bool StringRef::getAsInteger(unsigned Radix, APInt &Result) const {
unsigned BitWidth = Log2Radix * Str.size();
if (BitWidth < Result.getBitWidth())
BitWidth = Result.getBitWidth(); // don't shrink the result
else
else if (BitWidth > Result.getBitWidth())
Result = Result.zext(BitWidth);
APInt RadixAP, CharAP; // unused unless !IsPowerOf2Radix