mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-09 19:00:08 +00:00
20 lines
400 B
ArmAsm
20 lines
400 B
ArmAsm
|
#include <sparc-ifunc.h>
|
||
|
#include <math_ldbl_opt.h>
|
||
|
|
||
|
SPARC_ASM_VIS3_IFUNC(nearbyint)
|
||
|
|
||
|
weak_alias (__nearbyint, nearbyint)
|
||
|
|
||
|
#if LONG_DOUBLE_COMPAT(libm, GLIBC_2_1)
|
||
|
compat_symbol (libm, __nearbyint, nearbyintl, GLIBC_2_1)
|
||
|
#endif
|
||
|
|
||
|
# undef weak_alias
|
||
|
# define weak_alias(a, b)
|
||
|
# undef compat_symbol
|
||
|
# define compat_symbol(a, b, c, d)
|
||
|
|
||
|
#define __nearbyint __nearbyint_generic
|
||
|
|
||
|
#include "../s_nearbyint.S"
|