mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-30 08:40:07 +00:00
948652e4f8
GCC 13 compiles these built-ins to frint.{d,s} instruction. Link: https://gcc.gnu.org/r13-3919
10 lines
216 B
C
10 lines
216 B
C
#if __GNUC_PREREQ (13, 0)
|
|
# define USE_RINT_BUILTIN 1
|
|
# define USE_RINTF_BUILTIN 1
|
|
#else
|
|
# define USE_RINT_BUILTIN 0
|
|
# define USE_RINTF_BUILTIN 0
|
|
#endif
|
|
#define USE_RINTL_BUILTIN 0
|
|
#define USE_RINTF128_BUILTIN 0
|