From f711e4ef53990b6c76f2dfdbcb9f791c541cdac3 Mon Sep 17 00:00:00 2001 From: Xiaolin Tang Date: Wed, 23 Nov 2022 11:44:59 +0800 Subject: LoongArch: Use __builtin_llrint{,f} with GCC >= 13 GCC 13 compiles these built-ins instead of generic implementation for function llrint. Link: https://gcc.gnu.org/r13-3920 Co-Authored-By: Xi Ruoyao --- sysdeps/loongarch/fpu/math-use-builtins-llrint.h | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 sysdeps/loongarch/fpu/math-use-builtins-llrint.h (limited to 'sysdeps/loongarch') diff --git a/sysdeps/loongarch/fpu/math-use-builtins-llrint.h b/sysdeps/loongarch/fpu/math-use-builtins-llrint.h new file mode 100644 index 0000000000..bee5910b09 --- /dev/null +++ b/sysdeps/loongarch/fpu/math-use-builtins-llrint.h @@ -0,0 +1,10 @@ +#if __GNUC_PREREQ (13, 0) +# define USE_LLRINT_BUILTIN 1 +# define USE_LLRINTF_BUILTIN 1 +#else +# define USE_LLRINT_BUILTIN 0 +# define USE_LLRINTF_BUILTIN 0 +#endif + +#define USE_LLRINTL_BUILTIN 0 +#define USE_LLRINTF128_BUILTIN 0 -- cgit 1.4.1