mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 13:00:06 +00:00
241603123c
GCC 13 compiles these built-ins to {fmax,fmin}.{s/d} instruction, use them instead of the generic implementation. Link: https://gcc.gnu.org/r13-2085 Signed-off-by: Xi Ruoyao <xry111@xry111.site>
11 lines
213 B
C
11 lines
213 B
C
#if __GNUC_PREREQ (13, 0)
|
|
# define USE_FMAX_BUILTIN 1
|
|
# define USE_FMAXF_BUILTIN 1
|
|
#else
|
|
# define USE_FMAX_BUILTIN 0
|
|
# define USE_FMAXF_BUILTIN 0
|
|
#endif
|
|
|
|
#define USE_FMAXL_BUILTIN 0
|
|
#define USE_FMAXF128_BUILTIN 0
|