1 /* Macros for not-a-number.
2 Copyright (C) 2007-2020 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
18 /* IBM z/OS supports both hexadecimal and IEEE floating-point formats. The
19 former does not support NaN and its isnan() implementation returns zero
21 #if defined __MVS__ && defined __IBMC__ && !defined __BFP__
22 # error "NaN is not supported with IBM's hexadecimal floating-point format; please re-compile with -qfloat=ieee"
25 /* NaNf () returns a 'float' not-a-number. */
27 /* The Compaq (ex-DEC) C 6.4 compiler and the Microsoft MSVC 9 compiler choke
28 on the expression 0.0 / 0.0. The IBM XL C compiler on z/OS complains.
29 PGI 16.10 complains. */
30 #if (defined __DECC || defined _MSC_VER \
31 || (defined __MVS__ && defined __IBMC__) \
36 static float zero
= 0.0f
;
40 # define NaNf() (0.0f / 0.0f)
44 /* NaNd () returns a 'double' not-a-number. */
46 /* The Compaq (ex-DEC) C 6.4 compiler and the Microsoft MSVC 9 compiler choke
47 on the expression 0.0 / 0.0. The IBM XL C compiler on z/OS complains.
48 PGI 16.10 complains. */
49 #if (defined __DECC || defined _MSC_VER \
50 || (defined __MVS__ && defined __IBMC__) \
55 static double zero
= 0.0;
59 # define NaNd() (0.0 / 0.0)
63 /* NaNl () returns a 'long double' not-a-number. */
65 /* On Irix 6.5, gcc 3.4.3 can't compute compile-time NaN, and needs the
66 runtime type conversion.
67 The Microsoft MSVC 9 compiler chokes on the expression 0.0L / 0.0L.
68 The IBM XL C compiler on z/OS complains.
69 PGI 16.10 complains. */
71 static long double NaNl ()
76 #elif defined _MSC_VER || (defined __MVS__ && defined __IBMC__) || defined __PGI
80 static long double zero
= 0.0L;
84 # define NaNl() (0.0L / 0.0L)