Blame sysdeps/ieee754/ldbl-96/bits/iscanonical.h

Packit 6c4009
/* Define iscanonical macro.  ldbl-96 version.
Packit 6c4009
   Copyright (C) 2016-2018 Free Software Foundation, Inc.
Packit 6c4009
   This file is part of the GNU C Library.
Packit 6c4009
Packit 6c4009
   The GNU C Library is free software; you can redistribute it and/or
Packit 6c4009
   modify it under the terms of the GNU Lesser General Public
Packit 6c4009
   License as published by the Free Software Foundation; either
Packit 6c4009
   version 2.1 of the License, or (at your option) any later version.
Packit 6c4009
Packit 6c4009
   The GNU C Library is distributed in the hope that it will be useful,
Packit 6c4009
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 6c4009
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 6c4009
   Lesser General Public License for more details.
Packit 6c4009
Packit 6c4009
   You should have received a copy of the GNU Lesser General Public
Packit 6c4009
   License along with the GNU C Library; if not, see
Packit 6c4009
   <http://www.gnu.org/licenses/>.  */
Packit 6c4009
Packit 6c4009
#ifndef _MATH_H
Packit 6c4009
# error "Never use <bits/iscanonical.h> directly; include <math.h> instead."
Packit 6c4009
#endif
Packit 6c4009
Packit 6c4009
extern int __iscanonicall (long double __x)
Packit 6c4009
     __THROW __attribute__ ((__const__));
Packit 6c4009
#define __iscanonicalf(x) ((void) (__typeof (x)) (x), 1)
Packit 6c4009
#define __iscanonical(x) ((void) (__typeof (x)) (x), 1)
Packit 6c4009
#if __HAVE_DISTINCT_FLOAT128
Packit 6c4009
# define __iscanonicalf128(x) ((void) (__typeof (x)) (x), 1)
Packit 6c4009
#endif
Packit 6c4009
Packit 6c4009
/* Return nonzero value if X is canonical.  In IEEE interchange binary
Packit 6c4009
   formats, all values are canonical, but the argument must still be
Packit 6c4009
   converted to its semantic type for any exceptions arising from the
Packit 6c4009
   conversion, before being discarded; in extended precision, there
Packit 6c4009
   are encodings that are not consistently handled as corresponding to
Packit 6c4009
   any particular value of the type, and we return 0 for those.  */
Packit 6c4009
#ifndef __cplusplus
Packit 6c4009
# define iscanonical(x) __MATH_TG ((x), __iscanonical, (x))
Packit 6c4009
#else
Packit 6c4009
/* In C++ mode, __MATH_TG cannot be used, because it relies on
Packit 6c4009
   __builtin_types_compatible_p, which is a C-only builtin.  On the
Packit 6c4009
   other hand, overloading provides the means to distinguish between
Packit 6c4009
   the floating-point types.  The overloading resolution will match
Packit 6c4009
   the correct parameter (regardless of type qualifiers (i.e.: const
Packit 6c4009
   and volatile)).  */
Packit 6c4009
extern "C++" {
Packit 6c4009
inline int iscanonical (float __val) { return __iscanonicalf (__val); }
Packit 6c4009
inline int iscanonical (double __val) { return __iscanonical (__val); }
Packit 6c4009
inline int iscanonical (long double __val) { return __iscanonicall (__val); }
Packit 6c4009
# if __HAVE_DISTINCT_FLOAT128
Packit 6c4009
inline int iscanonical (_Float128 __val) { return __iscanonicalf128 (__val); }
Packit 6c4009
# endif
Packit 6c4009
}
Packit 6c4009
#endif /* __cplusplus */