mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-08 14:20:07 +00:00
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 <libm-alias-float.h>. (fabsf): Define using libm_alias_float.
This commit is contained in:
parent
ef5d8b4342
commit
ff84a0e050
@ -1,3 +1,9 @@
|
||||
2017-12-01 Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
* sysdeps/powerpc/powerpc32/e500/nofpu/s_fabsf.S: Include
|
||||
<libm-alias-float.h>.
|
||||
(fabsf): Define using libm_alias_float.
|
||||
|
||||
2017-11-30 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* sysdeps/mips/dl-machine.h (elf_machine_reloc): Expand MIN.
|
||||
|
@ -17,6 +17,7 @@
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <sysdep.h>
|
||||
#include <libm-alias-float.h>
|
||||
|
||||
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)
|
||||
|
Loading…
Reference in New Issue
Block a user