mirror of
git://sourceware.org/git/glibc.git
synced 2025-02-11 12:50:58 +08:00
LoongArch: Use __builtin_{fmax,fmaxf,fmin,fminf} with GCC >= 13
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>
This commit is contained in:
parent
fa9e095bbe
commit
241603123c
10
sysdeps/loongarch/fpu/math-use-builtins-fmax.h
Normal file
10
sysdeps/loongarch/fpu/math-use-builtins-fmax.h
Normal file
@ -0,0 +1,10 @@
|
||||
#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
|
10
sysdeps/loongarch/fpu/math-use-builtins-fmin.h
Normal file
10
sysdeps/loongarch/fpu/math-use-builtins-fmin.h
Normal file
@ -0,0 +1,10 @@
|
||||
#if __GNUC_PREREQ (13, 0)
|
||||
# define USE_FMIN_BUILTIN 1
|
||||
# define USE_FMINF_BUILTIN 1
|
||||
#else
|
||||
# define USE_FMIN_BUILTIN 0
|
||||
# define USE_FMINF_BUILTIN 0
|
||||
#endif
|
||||
|
||||
#define USE_FMINL_BUILTIN 0
|
||||
#define USE_FMINF128_BUILTIN 0
|
Loading…
Reference in New Issue
Block a user