From: Joseph Myers Date: Wed, 6 Dec 2017 22:44:56 +0000 (+0000) Subject: Support defining strfromf32 alias. X-Git-Tag: glibc-2.27~312 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fc10cc3f3223f1fa8c8dcc6743d18d1392808d71;p=thirdparty%2Fglibc.git Support defining strfromf32 alias. This patch adds support for defining strfromf32 as an alias of strfromf when _Float32 support is enabled. Tested for x86_64; also tested with build-many-glibcs.py in conjunction with other _Float32 changes. * stdlib/strfromf.c: Include . [__HAVE_FLOAT32 && !__HAVE_DISTINCT_FLOAT32] (strfromf32): Define and later undefine as macro and define as weak alias. --- diff --git a/ChangeLog b/ChangeLog index 96487186ddd..fc455ae5776 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2017-12-06 Joseph Myers + * stdlib/strfromf.c: Include . + [__HAVE_FLOAT32 && !__HAVE_DISTINCT_FLOAT32] (strfromf32): Define + and later undefine as macro and define as weak alias. + * math/test-float32.h: New file. * sysdeps/generic/libm-alias-float.h: Include . diff --git a/stdlib/strfromf.c b/stdlib/strfromf.c index 20c674414d9..01bed92ac1b 100644 --- a/stdlib/strfromf.c +++ b/stdlib/strfromf.c @@ -16,7 +16,23 @@ License along with the GNU C Library; if not, see . */ +#include + #define FLOAT float #define STRFROM strfromf +#if __HAVE_FLOAT32 && !__HAVE_DISTINCT_FLOAT32 +# define strfromf32 __hide_strfromf32 +#endif + +#include + +#if __HAVE_FLOAT32 && !__HAVE_DISTINCT_FLOAT32 +# undef strfromf32 +#endif + #include "strfrom-skeleton.c" + +#if __HAVE_FLOAT32 && !__HAVE_DISTINCT_FLOAT32 +weak_alias (strfromf, strfromf32) +#endif