From faec63238fc58d7c055aa2394d2500e20565dbbf Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Thu, 30 Nov 2017 19:03:57 +0000 Subject: Use declare_mgen_alias in m68k templates. Some m68k libm functions have their own templates replacing the generic math/ ones but using the type-generic template machinery. These currently define function aliases directly using weak_alias. In preparation for additional _FloatN / _FloatNx function aliases, this patch changes them to use declare_mgen_alias for creating aliases instead. Tested with build-many-glibcs.py that installed stripped shared libraries for m68k-linux-gnu are unchanged by the patch. * sysdeps/m68k/m680x0/fpu/s_ccosh_template.c (ccosh): Use declare_mgen_alias instead of weak_alias. * sysdeps/m68k/m680x0/fpu/s_cexp_template.c (cexp): Likewise. * sysdeps/m68k/m680x0/fpu/s_csin_template.c (csin): Likewise. * sysdeps/m68k/m680x0/fpu/s_csinh_template.c (csinh): Likewise. --- sysdeps/m68k/m680x0/fpu/s_csin_template.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sysdeps/m68k/m680x0/fpu/s_csin_template.c') diff --git a/sysdeps/m68k/m680x0/fpu/s_csin_template.c b/sysdeps/m68k/m680x0/fpu/s_csin_template.c index be72208ef7..bfcba12841 100644 --- a/sysdeps/m68k/m680x0/fpu/s_csin_template.c +++ b/sysdeps/m68k/m680x0/fpu/s_csin_template.c @@ -56,4 +56,4 @@ s(__csin) (CFLOAT x) return retval; } -weak_alias (s(__csin), s(csin)) +declare_mgen_alias (__csin, csin) -- cgit 1.4.1