diff options
author | Joseph Myers <joseph@codesourcery.com> | 2017-10-13 23:09:48 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2017-10-13 23:09:48 +0000 |
commit | 18c08b96414c7bb01af92bfef8d542ffc7bdaf80 (patch) | |
tree | 38d8e530b620dea73bf30012b18550e4b3d649cc /ChangeLog | |
parent | f8718a9e1620d6645e3c069e9b13fcd09f6db462 (diff) | |
download | glibc-18c08b96414c7bb01af92bfef8d542ffc7bdaf80.tar glibc-18c08b96414c7bb01af92bfef8d542ffc7bdaf80.tar.gz glibc-18c08b96414c7bb01af92bfef8d542ffc7bdaf80.tar.bz2 glibc-18c08b96414c7bb01af92bfef8d542ffc7bdaf80.zip |
Support strfromf128 alias.
This patch adds support for building strfromf128 as an alias of
strfroml, in the case of __HAVE_FLOAT128 && !__HAVE_DISTINCT_FLOAT128.
Tested with build-many-glibcs.py that installed stripped shared
libraries are unchanged by this patch. Also tested together with
changes to enable float128 aliases.
* stdlib/strfroml.c: Include <bits/floatn.h>.
[__HAVE_FLOAT128 && !__HAVE_DISTINCT_FLOAT128] (strfromf128):
Define before include of <stdlib.h> and undefine afterwards, then
define as weak alias.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1,5 +1,10 @@ 2017-10-13 Joseph Myers <joseph@codesourcery.com> + * stdlib/strfroml.c: Include <bits/floatn.h>. + [__HAVE_FLOAT128 && !__HAVE_DISTINCT_FLOAT128] (strfromf128): + Define before include of <stdlib.h> and undefine afterwards, then + define as weak alias. + * sysdeps/ieee754/ldbl-64-128/s_nextafterl.c (weak_alias): Undefine and restore default definition. Use libm_alias_ldouble_other. |