aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2017-10-03 20:56:46 +0000
committerJoseph Myers <joseph@codesourcery.com>2017-10-03 20:56:46 +0000
commit39793865ec91775b4bf6e487c3e83b0d79517771 (patch)
tree77d263ad1b693d8530586c42db59f2031a83fd6f /ChangeLog
parentaa0235dfdebffe9b338deba51f3ba563ee9b433d (diff)
downloadglibc-39793865ec91775b4bf6e487c3e83b0d79517771.tar.xz
glibc-39793865ec91775b4bf6e487c3e83b0d79517771.zip
Use libm_alias_double for dbl-64 frexp.
This patch makes dbl-64 frexp use libm_alias_double. Both the dbl-64 and dbl-64/wordsize-64 versions are changed; the ldbl-opt version is made to define only the libc frexpl compat symbol, now the generic code handles the libm compat symbol automatically. Tested for x86_64, and verified with build-many-glibcs.py that installed stripped shared libraries are unchanged by this patch. * sysdeps/ieee754/dbl-64/s_frexp.c: Include <libm-alias-double.h>. (frexp): Define using libm_alias_double. * sysdeps/ieee754/dbl-64/wordsize-64/s_frexp.c: Include <libm-alias-double.h>. (frexp): Define using libm_alias_double. * sysdeps/ieee754/ldbl-opt/s_frexp.c (frexpl): Only define libc compat symbol here.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog10
1 files changed, 10 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 6a028845c4..22f6f5c5da 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2017-10-03 Joseph Myers <joseph@codesourcery.com>
+
+ * sysdeps/ieee754/dbl-64/s_frexp.c: Include <libm-alias-double.h>.
+ (frexp): Define using libm_alias_double.
+ * sysdeps/ieee754/dbl-64/wordsize-64/s_frexp.c: Include
+ <libm-alias-double.h>.
+ (frexp): Define using libm_alias_double.
+ * sysdeps/ieee754/ldbl-opt/s_frexp.c (frexpl): Only define libc
+ compat symbol here.
+
2017-10-03 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
[BZ #22235]