Blame sysdeps/generic/math-use-builtins.h

Packit Service ac5e6c
/* Using math gcc builtins instead of generic implementation.  Generic version.
Packit Service ac5e6c
   Copyright (C) 2019 Free Software Foundation, Inc.
Packit Service ac5e6c
   This file is part of the GNU C Library.
Packit Service ac5e6c
Packit Service ac5e6c
   The GNU C Library is free software; you can redistribute it and/or
Packit Service ac5e6c
   modify it under the terms of the GNU Lesser General Public
Packit Service ac5e6c
   License as published by the Free Software Foundation; either
Packit Service ac5e6c
   version 2.1 of the License, or (at your option) any later version.
Packit Service ac5e6c
Packit Service ac5e6c
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service ac5e6c
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service ac5e6c
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service ac5e6c
   Lesser General Public License for more details.
Packit Service ac5e6c
Packit Service ac5e6c
   You should have received a copy of the GNU Lesser General Public
Packit Service ac5e6c
   License along with the GNU C Library; if not, see
Packit Service ac5e6c
   <https://www.gnu.org/licenses/>.  */
Packit Service ac5e6c
Packit Service ac5e6c
#ifndef MATH_USE_BUILTINS_H
Packit Service ac5e6c
#define MATH_USE_BUILTINS_H	1
Packit Service ac5e6c
Packit Service 8cba35
#include <features.h> /* For __GNUC_PREREQ.  */
Packit Service 8cba35
Packit Service ac5e6c
/* Define these macros to 1 to use __builtin_xyz instead of the
Packit Service ac5e6c
   generic implementation.  */
Packit Service ac5e6c
#define USE_NEARBYINT_BUILTIN 0
Packit Service ac5e6c
#define USE_NEARBYINTF_BUILTIN 0
Packit Service ac5e6c
#define USE_NEARBYINTL_BUILTIN 0
Packit Service ac5e6c
#define USE_NEARBYINTF128_BUILTIN 0
Packit Service ac5e6c
Packit Service 4880ca
#define USE_RINT_BUILTIN 0
Packit Service 4880ca
#define USE_RINTF_BUILTIN 0
Packit Service 4880ca
#define USE_RINTL_BUILTIN 0
Packit Service 4880ca
#define USE_RINTF128_BUILTIN 0
Packit Service 4880ca
Packit Service 51ad8b
#define USE_FLOOR_BUILTIN 0
Packit Service 51ad8b
#define USE_FLOORF_BUILTIN 0
Packit Service 51ad8b
#define USE_FLOORL_BUILTIN 0
Packit Service 51ad8b
#define USE_FLOORF128_BUILTIN 0
Packit Service 51ad8b
Packit Service 2eb427
#define USE_CEIL_BUILTIN 0
Packit Service 2eb427
#define USE_CEILF_BUILTIN 0
Packit Service 2eb427
#define USE_CEILL_BUILTIN 0
Packit Service 2eb427
#define USE_CEILF128_BUILTIN 0
Packit Service 2eb427
Packit Service 625191
#define USE_TRUNC_BUILTIN 0
Packit Service 625191
#define USE_TRUNCF_BUILTIN 0
Packit Service 625191
#define USE_TRUNCL_BUILTIN 0
Packit Service 625191
#define USE_TRUNCF128_BUILTIN 0
Packit Service 625191
Packit Service 564da4
#define USE_ROUND_BUILTIN 0
Packit Service 564da4
#define USE_ROUNDF_BUILTIN 0
Packit Service 564da4
#define USE_ROUNDL_BUILTIN 0
Packit Service 564da4
#define USE_ROUNDF128_BUILTIN 0
Packit Service 564da4
Packit Service 8cba35
#define USE_COPYSIGNL_BUILTIN 1
Packit Service 8cba35
#if __GNUC_PREREQ (7, 0)
Packit Service 8cba35
# define USE_COPYSIGNF128_BUILTIN 1
Packit Service 8cba35
#else
Packit Service 8cba35
# define USE_COPYSIGNF128_BUILTIN 0
Packit Service 8cba35
#endif
Packit Service 8cba35
Packit Service ac5e6c
#endif /* math-use-builtins.h */