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

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