aboutsummaryrefslogtreecommitdiffstats
path: root/util.c
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-11-09 09:44:49 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-11-09 09:44:49 +0000
commit1922253e2e855f6ea01ddcd53b29400800fb1eeb (patch)
treeb44104ab8463e2e16a19064a3f37b4fe53c44d05 /util.c
parentb8540e0a9da1c2ac00aabd85e11a6c1758cd1b13 (diff)
downloadruby-1922253e2e855f6ea01ddcd53b29400800fb1eeb.tar.gz
util.c: suppress warnings
These functions handle overflows correctly. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65643 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'util.c')
-rw-r--r--util.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/util.c b/util.c
index 617c8e8f00..9835d7f3c4 100644
--- a/util.c
+++ b/util.c
@@ -84,6 +84,7 @@ const signed char ruby_digit36_to_number_table[] = {
/*f*/ -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
};
+NO_SANITIZE("unsigned-integer-overflow", extern unsigned long ruby_scan_digits(const char *str, ssize_t len, int base, size_t *retlen, int *overflow));
unsigned long
ruby_scan_digits(const char *str, ssize_t len, int base, size_t *retlen, int *overflow)
{
@@ -2970,6 +2971,7 @@ ret:
return sign ? -dval(rv) : dval(rv);
}
+NO_SANITIZE("unsigned-integer-overflow", static int quorem(Bigint *b, Bigint *S));
static int
quorem(Bigint *b, Bigint *S)
{