From f8718a9e1620d6645e3c069e9b13fcd09f6db462 Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Fri, 13 Oct 2017 23:05:15 +0000 Subject: Use libm_alias_ldouble_other in ldbl-64-128/s_nextafterl.c. This patch makes ldbl-64-128/s_nextafterl.c restore the default weak_alias definition and use libm_alias_ldouble_other (having undefined and redefined weak_alias for the include of ldbl-128/s_nextafterl.c, so the libm_alias_ldouble use in the latter file is ineffective). 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. * sysdeps/ieee754/ldbl-64-128/s_nextafterl.c (weak_alias): Undefine and restore default definition. Use libm_alias_ldouble_other. --- sysdeps/ieee754/ldbl-64-128/s_nextafterl.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'sysdeps/ieee754') diff --git a/sysdeps/ieee754/ldbl-64-128/s_nextafterl.c b/sysdeps/ieee754/ldbl-64-128/s_nextafterl.c index 64c663eda3..5218abea5e 100644 --- a/sysdeps/ieee754/ldbl-64-128/s_nextafterl.c +++ b/sysdeps/ieee754/ldbl-64-128/s_nextafterl.c @@ -4,3 +4,6 @@ #include long_double_symbol (libm, __nextafterl, nextafterl); long_double_symbol (libm, __nexttowardl, nexttowardl); +#undef weak_alias +#define weak_alias(name, aliasname) _weak_alias (name, aliasname) +libm_alias_ldouble_other (__nextafter, nextafter) -- cgit 1.4.1