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

Packit Service 5d2851
/* Using math gcc builtins instead of generic implementation.  Generic version.
Packit Service 5d2851
   Copyright (C) 2019 Free Software Foundation, Inc.
Packit Service 5d2851
   This file is part of the GNU C Library.
Packit Service 5d2851
Packit Service 5d2851
   The GNU C Library is free software; you can redistribute it and/or
Packit Service 5d2851
   modify it under the terms of the GNU Lesser General Public
Packit Service 5d2851
   License as published by the Free Software Foundation; either
Packit Service 5d2851
   version 2.1 of the License, or (at your option) any later version.
Packit Service 5d2851
Packit Service 5d2851
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service 5d2851
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 5d2851
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 5d2851
   Lesser General Public License for more details.
Packit Service 5d2851
Packit Service 5d2851
   You should have received a copy of the GNU Lesser General Public
Packit Service 5d2851
   License along with the GNU C Library; if not, see
Packit Service 5d2851
   <https://www.gnu.org/licenses/>.  */
Packit Service 5d2851
Packit Service 5d2851
#ifndef MATH_USE_BUILTINS_H
Packit Service 5d2851
#define MATH_USE_BUILTINS_H	1
Packit Service 5d2851
Packit Service 5d2851
/* Define these macros to 1 to use __builtin_xyz instead of the
Packit Service 5d2851
   generic implementation.  */
Packit Service 5d2851
#define USE_NEARBYINT_BUILTIN 0
Packit Service 5d2851
#define USE_NEARBYINTF_BUILTIN 0
Packit Service 5d2851
#define USE_NEARBYINTL_BUILTIN 0
Packit Service 5d2851
#define USE_NEARBYINTF128_BUILTIN 0
Packit Service 5d2851
Packit Service 5d2851
#endif /* math-use-builtins.h */