From: Joseph Myers Date: Fri, 1 Dec 2017 01:12:42 +0000 (+0000) Subject: Use libm_alias_float for e500. X-Git-Tag: glibc-2.27~368 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ff84a0e0507d797011ba28842ab1e5dd0d430eb1;p=thirdparty%2Fglibc.git Use libm_alias_float for e500. Continuing the preparation for additional _FloatN / _FloatNx function aliases, this patch makes an e500 libm function implementation use libm_alias_float to define function aliases. Tested with build-many-glibcs.py that installed stripped shared libraries are unchanged for its e500 configurations. * sysdeps/powerpc/powerpc32/e500/nofpu/s_fabsf.S: Include . (fabsf): Define using libm_alias_float. --- diff --git a/ChangeLog b/ChangeLog index fc0bd3e94b0..d5951d02282 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2017-12-01 Joseph Myers + + * sysdeps/powerpc/powerpc32/e500/nofpu/s_fabsf.S: Include + . + (fabsf): Define using libm_alias_float. + 2017-11-30 H.J. Lu * sysdeps/mips/dl-machine.h (elf_machine_reloc): Expand MIN. diff --git a/sysdeps/powerpc/powerpc32/e500/nofpu/s_fabsf.S b/sysdeps/powerpc/powerpc32/e500/nofpu/s_fabsf.S index 9d00b629236..e40b3d556f1 100644 --- a/sysdeps/powerpc/powerpc32/e500/nofpu/s_fabsf.S +++ b/sysdeps/powerpc/powerpc32/e500/nofpu/s_fabsf.S @@ -17,6 +17,7 @@ . */ #include +#include ENTRY (__fabsf) /* float [r3] fabsf (float [r3] x) ; */ @@ -24,4 +25,4 @@ ENTRY (__fabsf) blr END (__fabsf) -weak_alias (__fabsf, fabsf) +libm_alias_float (__fabs, fabs)