mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-28 05:21:13 +00:00
LoongArch: Use __builtin_rint{,f} with GCC >= 13
GCC 13 compiles these built-ins to frint.{d,s} instruction. Link: https://gcc.gnu.org/r13-3919
This commit is contained in:
parent
f704192911
commit
948652e4f8
9
sysdeps/loongarch/fpu/math-use-builtins-rint.h
Normal file
9
sysdeps/loongarch/fpu/math-use-builtins-rint.h
Normal file
@ -0,0 +1,9 @@
|
||||
#if __GNUC_PREREQ (13, 0)
|
||||
# define USE_RINT_BUILTIN 1
|
||||
# define USE_RINTF_BUILTIN 1
|
||||
#else
|
||||
# define USE_RINT_BUILTIN 0
|
||||
# define USE_RINTF_BUILTIN 0
|
||||
#endif
|
||||
#define USE_RINTL_BUILTIN 0
|
||||
#define USE_RINTF128_BUILTIN 0
|
Loading…
Reference in New Issue
Block a user