[v2,03/10] LoongArch: Use __builtin_lrint{,f} with GCC >= 13

Message ID 20221123034504.1249579-4-tangxiaolin@loongson.cn
State Committed
Commit e1697a540c49d5bd35e84b22fcd537c14f71a4e9
Headers
Series LoongArch: Use builtins with GCC >= 13 |

Checks

Context Check Description
dj/TryBot-apply_patch success Patch applied to master at the time it was sent

Commit Message

Xiaolin Tang Nov. 23, 2022, 3:44 a.m. UTC
  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>
---
 sysdeps/loongarch/fpu/math-use-builtins-lrint.h | 10 ++++++++++
 1 file changed, 10 insertions(+)
 create mode 100644 sysdeps/loongarch/fpu/math-use-builtins-lrint.h
  

Patch

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 0000000000..7df8aac81f
--- /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