diff options
author | Joseph Myers <joseph@codesourcery.com> | 2017-02-07 17:15:47 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2017-02-07 17:15:47 +0000 |
commit | edbbdb185518008439221ed9db296ab31039d076 (patch) | |
tree | 4332e967234b3fca070f1f94d9d735fc3cfffb11 /math/auto-libm-test-in | |
parent | Fix typo in manual (diff) | |
download | glibc-edbbdb185518008439221ed9db296ab31039d076.tar.gz glibc-edbbdb185518008439221ed9db296ab31039d076.tar.bz2 glibc-edbbdb185518008439221ed9db296ab31039d076.zip |
Fix powf inaccuracy (bug 21112).
Bug 21112 reports a case where powf is substantially inaccurate. This
results from a multiplication where cp_h*p_h is required to be exact,
and p_h is masked to have only 12 leading nonzero bits in its
mantissa, but the value of cp_h has the 13th bit nonzero, leading to
inexact multiplication results in some cases that can result in large
errors in the final result of powf. This patch fixes this by using a
value of cp_h correctly rounded to nearest to 12 bits, with a
corresponding updated value of cp_l.
Tested for x86_64 and x86.
[BZ #21112]
* sysdeps/ieee754/flt-32/e_powf.c (cp_h): Use value with trailing
12 bits zero.
(cp_l): Update for new value of cp_h.
* math/auto-libm-test-in: Add another test of pow.
* math/auto-libm-test-out-pow: Regenerated.
Diffstat (limited to 'math/auto-libm-test-in')
-rw-r--r-- | math/auto-libm-test-in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/math/auto-libm-test-in b/math/auto-libm-test-in index 52272e8579..58236efd66 100644 --- a/math/auto-libm-test-in +++ b/math/auto-libm-test-in @@ -3749,6 +3749,7 @@ pow 0xf.fffffp+124 -0x5.b5b648p+0 pow 0x1.430d4cp+0 0x5.0e462p+4 pow 0x9.8b82ap-4 -0x1.99907ap+12 pow 0xd.73035p-4 -0x1.47bb8p+8 +pow 0x1.059c76p+0 0x1.ff80bep+11 sin 0 sin -0 |