mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 14:50:05 +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.
8 lines
218 B
C
8 lines
218 B
C
/* Generic implementations for float and double always use the builtin. */
|
|
#define USE_COPYSIGNL_BUILTIN 1
|
|
#if __GNUC_PREREQ (7, 0)
|
|
# define USE_COPYSIGNF128_BUILTIN 1
|
|
#else
|
|
# define USE_COPYSIGNF128_BUILTIN 0
|
|
#endif
|