]> sourceware.org Git - glibc.git/commit
Fix strtod subnormal rounding (bug 30220)
authorJoseph Myers <josmyers@redhat.com>
Tue, 27 Aug 2024 12:41:02 +0000 (12:41 +0000)
committerJoseph Myers <josmyers@redhat.com>
Tue, 27 Aug 2024 12:41:02 +0000 (12:41 +0000)
commit457622c2fa8f9f7435822d5287a437bc8be8090d
tree01827cadfdefef2117696ad3f82ff0bdd2a77c03
parentd73ed2601b7c3c93c3529149a3d7f7b6177900a8
Fix strtod subnormal rounding (bug 30220)

As reported in bug 30220, the implementation of strtod-family
functions has a bug in the following case: the input string would,
with infinite exponent range, take one more bit to represent than is
available in the normal precision of the return type; the value
represented is in the subnormal range; and there are no nonzero bits
in the value, below those that can be represented in subnormal
precision, other than the least significant bit and possibly the
0.5ulp bit.  In this case, round_and_return ends up discarding the
least significant bit.

Fix by saving that bit to merge into more_bits (it can't be merged in
at the time it's computed, because more_bits mustn't include this bit
in the case of after-rounding tininess detection checking if the
result is still subnormal when rounded to normal precision, so merging
this bit into more_bits needs to take place after that check).

Tested for x86_64.
stdlib/strtod_l.c
stdlib/tst-strtod-round-data
stdlib/tst-strtod-round-data.h
This page took 0.041001 seconds and 5 git commands to generate.