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

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