diff options
| author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2025-01-31 10:27:39 -0300 |
|---|---|---|
| committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2025-01-31 13:05:41 -0300 |
| commit | c79277a16785c8ae96d821414f4d31d654a0177c (patch) | |
| tree | 45239b819719dcc5c719482a53b44196c72be487 /sysdeps/ieee754/flt-32 | |
| parent | 1b29cb7b781ecf3f6dc4647c32861119bacbd5ef (diff) | |
| download | glibc-c79277a16785c8ae96d821414f4d31d654a0177c.tar.xz glibc-c79277a16785c8ae96d821414f4d31d654a0177c.zip | |
math: Fix log10p1f internal table value (BZ 32626)
It was copied wrong from CORE-MATH.
Diffstat (limited to 'sysdeps/ieee754/flt-32')
| -rw-r--r-- | sysdeps/ieee754/flt-32/s_log10p1f.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/ieee754/flt-32/s_log10p1f.c b/sysdeps/ieee754/flt-32/s_log10p1f.c index 64deb1eeda..4e11d55d49 100644 --- a/sysdeps/ieee754/flt-32/s_log10p1f.c +++ b/sysdeps/ieee754/flt-32/s_log10p1f.c @@ -70,7 +70,7 @@ __log10p1f (float x) }; static const double tl[] = { - 0x1.562ec497ef351p-43, 0x1.b9476892ea99cp-8, 0x1.b5e909c959eecp-7, + -0x1.562ec497ef351p-43, 0x1.b9476892ea99cp-8, 0x1.b5e909c959eecp-7, 0x1.45f4f59ec84fp-6, 0x1.af5f92cbcf2aap-6, 0x1.0ba01a6069052p-5, 0x1.3ed119b99dd41p-5, 0x1.714834298a088p-5, 0x1.a30a9d98309c1p-5, 0x1.d41d51266b9d9p-5, 0x1.02428c0f62dfcp-4, 0x1.1a23444eea521p-4, |
