diff options
author | Joseph Myers <joseph@codesourcery.com> | 2015-09-16 16:42:46 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2015-09-16 16:42:46 +0000 |
commit | 8124ac3e7383a5938ca87c3cc554bf6646744d65 (patch) | |
tree | ce2bb02c5d6938fb82e1eba514ba950ad60fa53c /NEWS | |
parent | 560b04462f899e76a0062ec89422caa6e94fd67f (diff) | |
download | glibc-8124ac3e7383a5938ca87c3cc554bf6646744d65.tar.gz glibc-8124ac3e7383a5938ca87c3cc554bf6646744d65.tar.xz glibc-8124ac3e7383a5938ca87c3cc554bf6646744d65.zip |
Clean up ldbl-128 / ldbl-128ibm expm1l dead code (bug 16415).
The ldbl-128 and ldbl-128ibm expm1l implementations have code to handle +Inf and finite arguments above an overflow threshold. Since they now use __expl for large positive arguments to fix other problems, this code is unreachable; this patch removes it. Tested for mips64 and powerpc. [BZ #16415] * sysdeps/ieee754/ldbl-128/s_expm1l.c (maxlog): Remove variable. (__expm1l): Remove code to handle positive infinity and overflow. * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c (maxlog): Remove variable. (__expm1l): Remove code to handle positive infinity and overflow.
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/NEWS b/NEWS index d46717e47a..0e9353f679 100644 --- a/NEWS +++ b/NEWS @@ -9,12 +9,12 @@ Version 2.23 * The following bugs are resolved with this release: - 2542, 2543, 2558, 2898, 14341, 14912, 15786, 15918, 16141, 16296, 16517, - 16519, 16520, 16521, 16734, 16973, 16985, 17243, 17244, 17787, 17905, - 18084, 18086, 18240, 18265, 18370, 18421, 18480, 18525, 18595, 18610, - 18618, 18647, 18661, 18674, 18675, 18681, 18757, 18778, 18781, 18787, - 18789, 18790, 18795, 18796, 18820, 18823, 18824, 18857, 18863, 18870, - 18872, 18873, 18875, 18887, 18921, 18952, 18961, 18966, 18967. + 2542, 2543, 2558, 2898, 14341, 14912, 15786, 15918, 16141, 16296, 16415, + 16517, 16519, 16520, 16521, 16734, 16973, 16985, 17243, 17244, 17787, + 17905, 18084, 18086, 18240, 18265, 18370, 18421, 18480, 18525, 18595, + 18610, 18618, 18647, 18661, 18674, 18675, 18681, 18757, 18778, 18781, + 18787, 18789, 18790, 18795, 18796, 18820, 18823, 18824, 18857, 18863, + 18870, 18872, 18873, 18875, 18887, 18921, 18952, 18961, 18966, 18967. * The obsolete header <regexp.h> has been removed. Programs that require this header must be updated to use <regex.h> instead. |