Blame bits/floatn.h

Packit Service 82fcde
/* Macros to control TS 18661-3 glibc features.
Packit Service 82fcde
   Copyright (C) 2017-2018 Free Software Foundation, Inc.
Packit Service 82fcde
   This file is part of the GNU C Library.
Packit Service 82fcde
Packit Service 82fcde
   The GNU C Library is free software; you can redistribute it and/or
Packit Service 82fcde
   modify it under the terms of the GNU Lesser General Public
Packit Service 82fcde
   License as published by the Free Software Foundation; either
Packit Service 82fcde
   version 2.1 of the License, or (at your option) any later version.
Packit Service 82fcde
Packit Service 82fcde
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service 82fcde
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 82fcde
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 82fcde
   Lesser General Public License for more details.
Packit Service 82fcde
Packit Service 82fcde
   You should have received a copy of the GNU Lesser General Public
Packit Service 82fcde
   License along with the GNU C Library; if not, see
Packit Service 82fcde
   <http://www.gnu.org/licenses/>.  */
Packit Service 82fcde
Packit Service 82fcde
/* Defined to 1 if the current compiler invocation provides a
Packit Service 82fcde
   floating-point type with the IEEE 754 binary128 format, and this glibc
Packit Service 82fcde
   includes corresponding *f128 interfaces for it.  */
Packit Service 82fcde
#define __HAVE_FLOAT128 0
Packit Service 82fcde
Packit Service 82fcde
/* Defined to 1 if __HAVE_FLOAT128 is 1 and the type is ABI-distinct
Packit Service 82fcde
   from the default float, double and long double types in this glibc.  */
Packit Service 82fcde
#define __HAVE_DISTINCT_FLOAT128 0
Packit Service 82fcde
Packit Service 82fcde
/* Defined to 1 if the current compiler invocation provides a
Packit Service 82fcde
   floating-point type with the right format for _Float64x, and this
Packit Service 82fcde
   glibc includes corresponding *f64x interfaces for it.  */
Packit Service 82fcde
#define __HAVE_FLOAT64X 0
Packit Service 82fcde
Packit Service 82fcde
/* Defined to 1 if __HAVE_FLOAT64X is 1 and _Float64x has the format
Packit Service 82fcde
   of long double.  Otherwise, if __HAVE_FLOAT64X is 1, _Float64x has
Packit Service 82fcde
   the format of _Float128, which must be different from that of long
Packit Service 82fcde
   double.  */
Packit Service 82fcde
#define __HAVE_FLOAT64X_LONG_DOUBLE 0
Packit Service 82fcde
Packit Service 82fcde
#ifndef __ASSEMBLER__
Packit Service 82fcde
Packit Service 82fcde
/* Defined to concatenate the literal suffix to be used with _Float128
Packit Service 82fcde
   types, if __HAVE_FLOAT128 is 1.
Packit Service 82fcde
   E.g.: #define __f128(x) x##f128.  */
Packit Service 82fcde
# undef __f128
Packit Service 82fcde
Packit Service 82fcde
/* Defined to a complex binary128 type if __HAVE_FLOAT128 is 1.
Packit Service 82fcde
   E.g.: #define __CFLOAT128 _Complex _Float128.  */
Packit Service 82fcde
# undef __CFLOAT128
Packit Service 82fcde
Packit Service 82fcde
#endif /* !__ASSEMBLER__.  */
Packit Service 82fcde
Packit Service 82fcde
#include <bits/floatn-common.h>