aboutsummaryrefslogtreecommitdiff
path: root/lib/Support/APInt.cpp
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-04-11 13:00:04 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-04-11 13:00:04 +0000
commit2cd43e402a7805a9a7b45defa4f2ed1cb7e17d68 (patch)
treed91cae773fde31c8215fd36c5f3e7c82746c0106 /lib/Support/APInt.cpp
parent98a1a7151e36c7017b1071701df28e84dacc4676 (diff)
Fix an approximate calculation in an assertion not to give false negatives.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35901 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/APInt.cpp')
-rw-r--r--lib/Support/APInt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/APInt.cpp b/lib/Support/APInt.cpp
index 27d4741321..73ee3e18dc 100644
--- a/lib/Support/APInt.cpp
+++ b/lib/Support/APInt.cpp
@@ -1726,7 +1726,7 @@ void APInt::fromString(uint32_t numbits, const char *str, uint32_t 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)/20 <= numbits || radix != 10 && "Insufficient bit width");
+ assert((slen*64)/22 <= numbits || radix != 10 && "Insufficient bit width");
// Allocate memory
if (!isSingleWord())