mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-14 17:11:06 +00:00
e80501a5c9
Each symbol definitions are moved on a separated file and it cover all symbol type definitions (float, double, long double, and float128). It allows to set support for architectures without the boiler place of copying default values. Checked with a build on the affected ABIs.
16 lines
377 B
C
16 lines
377 B
C
#ifdef HAVE_S390_MIN_Z196_ZARCH_ASM_SUPPORT
|
|
# define USE_ROUND_BUILTIN 1
|
|
# define USE_ROUNDF_BUILTIN 1
|
|
# define USE_ROUNDL_BUILTIN 1
|
|
# if __GNUC_PREREQ (8, 0)
|
|
# define USE_ROUNDF128_BUILTIN 1
|
|
# else
|
|
# define USE_ROUNDF128_BUILTIN 0
|
|
# endif
|
|
#else
|
|
# define USE_ROUND_BUILTIN 0
|
|
# define USE_ROUNDF_BUILTIN 0
|
|
# define USE_ROUNDL_BUILTIN 0
|
|
# define USE_ROUNDF128_BUILTIN 0
|
|
#endif
|