diff options
author | Joseph Myers <joseph@codesourcery.com> | 2015-02-16 22:38:28 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2015-02-16 22:38:28 +0000 |
commit | a820f9b3c0cb5e80cd892b0f9c1c48f48bd4413f (patch) | |
tree | e563669e7d00f3eeab3c3b8f34ddd77339c57def /NEWS | |
parent | be802953a103bfd502d696f1418e2bef1b450be2 (diff) | |
download | glibc-a820f9b3c0cb5e80cd892b0f9c1c48f48bd4413f.tar glibc-a820f9b3c0cb5e80cd892b0f9c1c48f48bd4413f.tar.gz glibc-a820f9b3c0cb5e80cd892b0f9c1c48f48bd4413f.tar.bz2 glibc-a820f9b3c0cb5e80cd892b0f9c1c48f48bd4413f.zip |
Fix remquo spurious overflows (bug 17978).
Various remquo implementations, when computing the last three bits of
the quotient, have spurious overflows when 4 times the second argument
to remquo overflows. These overflows can in turn cause bad results in
rounding modes where that overflow results in a finite value. This
patch adds tests to avoid the problem multiplications in cases where
they would overflow, similar to those that control an earlier
multiplication by 8.
Tested for x86_64, x86, mips64 and powerpc.
[BZ #17978]
* sysdeps/ieee754/dbl-64/s_remquo.c (__remquo): Do not form
products 4 * y and 2 * y where those would overflow.
* sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c (__remquo):
Likewise.
* sysdeps/ieee754/flt-32/s_remquof.c (__remquof): Likewise.
* sysdeps/ieee754/ldbl-128/s_remquol.c (__remquol): Likewise.
* sysdeps/ieee754/ldbl-128ibm/s_remquol.c (__remquol): Likewise.
* sysdeps/ieee754/ldbl-96/s_remquol.c (__remquol): Likewise.
* math/libm-test.inc (remquo_test_data): Add more tests.
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -10,7 +10,7 @@ Version 2.22 * The following bugs are resolved with this release: 4719, 15467, 15790, 16560, 17569, 17792, 17912, 17932, 17944, 17949, - 17964, 17965, 17967, 17969. + 17964, 17965, 17967, 17969, 17978. Version 2.21 |