From: Xiaolin Tang Date: Wed, 23 Nov 2022 03:44:57 +0000 (+0800) Subject: LoongArch: Use __builtin_lrint{,f} with GCC >= 13 X-Git-Tag: glibc-2.37~140 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e1697a540c49d5bd35e84b22fcd537c14f71a4e9;p=thirdparty%2Fglibc.git 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 --- diff --git a/sysdeps/loongarch/fpu/math-use-builtins-lrint.h b/sysdeps/loongarch/fpu/math-use-builtins-lrint.h new file mode 100644 index 00000000000..7df8aac81fc --- /dev/null +++ b/sysdeps/loongarch/fpu/math-use-builtins-lrint.h @@ -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