1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Merge latest dtoa.c [Bug #13545]

Apply some part of http://www.netlib.org/fp/dtoa.c with my eyes...

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58796 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2017-05-19 14:14:52 +00:00
parent a4d51619e9
commit 7be47caa88
2 changed files with 9 additions and 5 deletions

View file

@ -16,6 +16,8 @@ class TestFloat < Test::Unit::TestCase
assert_in_delta(13.4 % 1, 0.4, 0.0001) assert_in_delta(13.4 % 1, 0.4, 0.0001)
assert_equal(36893488147419111424, assert_equal(36893488147419111424,
36893488147419107329.0.to_i) 36893488147419107329.0.to_i)
assert_equal(1185151044158398820374743613440,
1.1851510441583988e+30.to_i)
end end
def nan_test(x,y) def nan_test(x,y)

12
util.c
View file

@ -2117,7 +2117,7 @@ break2:
for (nd = nf = 0; (c = *s) >= '0' && c <= '9'; nd++, s++) for (nd = nf = 0; (c = *s) >= '0' && c <= '9'; nd++, s++)
if (nd < 9) if (nd < 9)
y = 10*y + c - '0'; y = 10*y + c - '0';
else if (nd < 16) else if (nd < DBL_DIG + 2)
z = 10*z + c - '0'; z = 10*z + c - '0';
nd0 = nd; nd0 = nd;
#ifdef USE_LOCALE #ifdef USE_LOCALE
@ -2157,17 +2157,19 @@ break2:
for (; c >= '0' && c <= '9'; c = *++s) { for (; c >= '0' && c <= '9'; c = *++s) {
have_dig: have_dig:
nz++; nz++;
if (nd > DBL_DIG * 4) continue; if (nd > DBL_DIG * 4) {
continue;
}
if (c -= '0') { if (c -= '0') {
nf += nz; nf += nz;
for (i = 1; i < nz; i++) for (i = 1; i < nz; i++)
if (nd++ < 9) if (nd++ < 9)
y *= 10; y *= 10;
else if (nd <= DBL_DIG + 1) else if (nd <= DBL_DIG + 2)
z *= 10; z *= 10;
if (nd++ < 9) if (nd++ < 9)
y = 10*y + c; y = 10*y + c;
else if (nd <= DBL_DIG + 1) else if (nd <= DBL_DIG + 2)
z = 10*z + c; z = 10*z + c;
nz = 0; nz = 0;
} }
@ -2255,7 +2257,7 @@ ret0:
if (!nd0) if (!nd0)
nd0 = nd; nd0 = nd;
k = nd < DBL_DIG + 1 ? nd : DBL_DIG + 1; k = nd < DBL_DIG + 2 ? nd : DBL_DIG + 2;
dval(rv) = y; dval(rv) = y;
if (k > 9) { if (k > 9) {
#ifdef SET_INEXACT #ifdef SET_INEXACT