[5/9] LoongArch: Use __builtin_llrint{,f} with GCC >= 13

Message ID 20221118112912.2501774-6-tangxiaolin@loongson.cn
State Committed
Commit f711e4ef53990b6c76f2dfdbcb9f791c541cdac3
Headers
Series LoongArch: Use builtins with GCC >= 13 |

Commit Message

Xiaolin Tang Nov. 18, 2022, 11:29 a.m. UTC
  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 <xry111@xry111.site>
---
 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
  

Patch

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