glibc/sysdeps/loongarch/fpu/math-use-builtins-lrint.h
Xiaolin Tang e1697a540c 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>
2022-11-29 16:00:28 +08:00

11 lines
219 B
C

#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