mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-29 16:21:07 +00:00
f711e4ef53
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>
11 lines
225 B
C
11 lines
225 B
C
#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
|