From f818afdd3b29d7eef2010448457c9f5c16e684cd Mon Sep 17 00:00:00 2001 From: Stefan Liebler Date: Wed, 11 Dec 2019 15:09:24 +0100 Subject: Use GCC builtins for copysign functions if desired. This patch is always using the corresponding GCC builtin for copysignf, copysign, and is using the builtin for copysignl, copysignf128 if the USE_FUNCTION_BUILTIN macros are defined to one in math-use-builtins.h. Altough the long double version is enabled by default we still need the macro and the alternative implementation as the _Float128 version of the builtin is not available with all supported GCC versions. Reviewed-by: Adhemerval Zanella --- sysdeps/s390/fpu/math-use-builtins.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'sysdeps/s390') diff --git a/sysdeps/s390/fpu/math-use-builtins.h b/sysdeps/s390/fpu/math-use-builtins.h index 51cb9f9..4c4aad2 100644 --- a/sysdeps/s390/fpu/math-use-builtins.h +++ b/sysdeps/s390/fpu/math-use-builtins.h @@ -101,4 +101,11 @@ #endif /* ! HAVE_S390_MIN_Z196_ZARCH_ASM_SUPPORT */ +#define USE_COPYSIGNL_BUILTIN 1 +#if __GNUC_PREREQ (7, 0) +# define USE_COPYSIGNF128_BUILTIN 1 +#else +# define USE_COPYSIGNF128_BUILTIN 0 +#endif + #endif /* math-use-builtins.h */ -- cgit v1.1