mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 23:00:07 +00:00
LoongArch: Use __builtin_lrint{,f} with GCC >= 13
GCC 13 compiles these built-ins instead of generic implementation for function lrint. Link: https://gcc.gnu.org/r13-3920 Co-Authored-By: Xi Ruoyao <xry111@xry111.site>
This commit is contained in:
parent
2b23ab1fea
commit
e1697a540c
10
sysdeps/loongarch/fpu/math-use-builtins-lrint.h
Normal file
10
sysdeps/loongarch/fpu/math-use-builtins-lrint.h
Normal file
@ -0,0 +1,10 @@
|
||||
#if __GNUC_PREREQ (13, 0)
|
||||
# define USE_LRINT_BUILTIN 1
|
||||
# define USE_LRINTF_BUILTIN 1
|
||||
#else
|
||||
# define USE_LRINT_BUILTIN 0
|
||||
# define USE_LRINTF_BUILTIN 0
|
||||
#endif
|
||||
|
||||
#define USE_LRINTL_BUILTIN 0
|
||||
#define USE_LRINTF128_BUILTIN 0
|
Loading…
Reference in New Issue
Block a user