xref: /netbsd-src/external/gpl3/gcc.old/dist/gcc/ginclude/float.h (revision 82d56013d7b633d116a93943de88e08335357a7c)
1 /* Copyright (C) 2002-2019 Free Software Foundation, Inc.
2 
3 This file is part of GCC.
4 
5 GCC is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3, or (at your option)
8 any later version.
9 
10 GCC is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14 
15 Under Section 7 of GPL version 3, you are granted additional
16 permissions described in the GCC Runtime Library Exception, version
17 3.1, as published by the Free Software Foundation.
18 
19 You should have received a copy of the GNU General Public License and
20 a copy of the GCC Runtime Library Exception along with this program;
21 see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
22 <http://www.gnu.org/licenses/>.  */
23 
24 /*
25  * ISO C Standard:  5.2.4.2.2  Characteristics of floating types <float.h>
26  */
27 
28 #ifndef _FLOAT_H___
29 #define _FLOAT_H___
30 
31 /* Radix of exponent representation, b. */
32 #undef FLT_RADIX
33 #define FLT_RADIX	__FLT_RADIX__
34 
35 /* Number of base-FLT_RADIX digits in the significand, p.  */
36 #undef FLT_MANT_DIG
37 #undef DBL_MANT_DIG
38 #undef LDBL_MANT_DIG
39 #define FLT_MANT_DIG	__FLT_MANT_DIG__
40 #define DBL_MANT_DIG	__DBL_MANT_DIG__
41 #define LDBL_MANT_DIG	__LDBL_MANT_DIG__
42 
43 /* Number of decimal digits, q, such that any floating-point number with q
44    decimal digits can be rounded into a floating-point number with p radix b
45    digits and back again without change to the q decimal digits,
46 
47 	p * log10(b)			if b is a power of 10
48 	floor((p - 1) * log10(b))	otherwise
49 */
50 #undef FLT_DIG
51 #undef DBL_DIG
52 #undef LDBL_DIG
53 #define FLT_DIG		__FLT_DIG__
54 #define DBL_DIG		__DBL_DIG__
55 #define LDBL_DIG	__LDBL_DIG__
56 
57 /* Minimum int x such that FLT_RADIX**(x-1) is a normalized float, emin */
58 #undef FLT_MIN_EXP
59 #undef DBL_MIN_EXP
60 #undef LDBL_MIN_EXP
61 #define FLT_MIN_EXP	__FLT_MIN_EXP__
62 #define DBL_MIN_EXP	__DBL_MIN_EXP__
63 #define LDBL_MIN_EXP	__LDBL_MIN_EXP__
64 
65 /* Minimum negative integer such that 10 raised to that power is in the
66    range of normalized floating-point numbers,
67 
68 	ceil(log10(b) * (emin - 1))
69 */
70 #undef FLT_MIN_10_EXP
71 #undef DBL_MIN_10_EXP
72 #undef LDBL_MIN_10_EXP
73 #define FLT_MIN_10_EXP	__FLT_MIN_10_EXP__
74 #define DBL_MIN_10_EXP	__DBL_MIN_10_EXP__
75 #define LDBL_MIN_10_EXP	__LDBL_MIN_10_EXP__
76 
77 /* Maximum int x such that FLT_RADIX**(x-1) is a representable float, emax.  */
78 #undef FLT_MAX_EXP
79 #undef DBL_MAX_EXP
80 #undef LDBL_MAX_EXP
81 #define FLT_MAX_EXP	__FLT_MAX_EXP__
82 #define DBL_MAX_EXP	__DBL_MAX_EXP__
83 #define LDBL_MAX_EXP	__LDBL_MAX_EXP__
84 
85 /* Maximum integer such that 10 raised to that power is in the range of
86    representable finite floating-point numbers,
87 
88 	floor(log10((1 - b**-p) * b**emax))
89 */
90 #undef FLT_MAX_10_EXP
91 #undef DBL_MAX_10_EXP
92 #undef LDBL_MAX_10_EXP
93 #define FLT_MAX_10_EXP	__FLT_MAX_10_EXP__
94 #define DBL_MAX_10_EXP	__DBL_MAX_10_EXP__
95 #define LDBL_MAX_10_EXP	__LDBL_MAX_10_EXP__
96 
97 /* Maximum representable finite floating-point number,
98 
99 	(1 - b**-p) * b**emax
100 */
101 #undef FLT_MAX
102 #undef DBL_MAX
103 #undef LDBL_MAX
104 #define FLT_MAX		__FLT_MAX__
105 #define DBL_MAX		__DBL_MAX__
106 #define LDBL_MAX	__LDBL_MAX__
107 
108 /* The difference between 1 and the least value greater than 1 that is
109    representable in the given floating point type, b**1-p.  */
110 #undef FLT_EPSILON
111 #undef DBL_EPSILON
112 #undef LDBL_EPSILON
113 #define FLT_EPSILON	__FLT_EPSILON__
114 #define DBL_EPSILON	__DBL_EPSILON__
115 #define LDBL_EPSILON	__LDBL_EPSILON__
116 
117 /* Minimum normalized positive floating-point number, b**(emin - 1).  */
118 #undef FLT_MIN
119 #undef DBL_MIN
120 #undef LDBL_MIN
121 #define FLT_MIN		__FLT_MIN__
122 #define DBL_MIN		__DBL_MIN__
123 #define LDBL_MIN	__LDBL_MIN__
124 
125 /* Addition rounds to 0: zero, 1: nearest, 2: +inf, 3: -inf, -1: unknown.  */
126 /* ??? This is supposed to change with calls to fesetround in <fenv.h>.  */
127 #undef FLT_ROUNDS
128 #define FLT_ROUNDS 1
129 
130 #if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) \
131      || (defined (__cplusplus) && __cplusplus >= 201103L)
132 /* The floating-point expression evaluation method.  The precise
133    definitions of these values are generalised to include support for
134    the interchange and extended types defined in ISO/IEC TS 18661-3.
135    Prior to this (for C99/C11) the definitions were:
136 
137 	-1  indeterminate
138 	 0  evaluate all operations and constants just to the range and
139 	    precision of the type
140 	 1  evaluate operations and constants of type float and double
141 	    to the range and precision of the double type, evaluate
142 	    long double operations and constants to the range and
143 	    precision of the long double type
144 	 2  evaluate all operations and constants to the range and
145 	    precision of the long double type
146 
147    The TS 18661-3 definitions are:
148 
149 	-1  indeterminate
150 	 0  evaluate all operations and constants, whose semantic type has
151 	    at most the range and precision of float, to the range and
152 	    precision of float; evaluate all other operations and constants
153 	    to the range and precision of the semantic type.
154 	 1  evaluate all operations and constants, whose semantic type has
155 	    at most the range and precision of double, to the range and
156 	    precision of double; evaluate all other operations and constants
157 	    to the range and precision of the semantic type.
158 	 2  evaluate all operations and constants, whose semantic type has
159 	    at most the range and precision of long double, to the range and
160 	    precision of long double; evaluate all other operations and
161 	    constants to the range and precision of the semantic type.
162 	 N  where _FloatN  is a supported interchange floating type
163 	    evaluate all operations and constants, whose semantic type has
164 	    at most the range and precision of the _FloatN type, to the
165 	    range and precision of the _FloatN type; evaluate all other
166 	    operations and constants to the range and precision of the
167 	    semantic type.
168 	 N + 1, where _FloatNx is a supported extended floating type
169 	    evaluate operations and constants, whose semantic type has at
170 	    most the range and precision of the _FloatNx type, to the range
171 	    and precision of the _FloatNx type; evaluate all other
172 	    operations and constants to the range and precision of the
173 	    semantic type.
174 
175    The compiler predefines two macros:
176 
177       __FLT_EVAL_METHOD__
178       Which, depending on the value given for
179       -fpermitted-flt-eval-methods, may be limited to only those values
180       for FLT_EVAL_METHOD defined in C99/C11.
181 
182      __FLT_EVAL_METHOD_TS_18661_3__
183       Which always permits the values for FLT_EVAL_METHOD defined in
184       ISO/IEC TS 18661-3.
185 
186      Here we want to use __FLT_EVAL_METHOD__, unless
187      __STDC_WANT_IEC_60559_TYPES_EXT__ is defined, in which case the user
188      is specifically asking for the ISO/IEC TS 18661-3 types, so we use
189      __FLT_EVAL_METHOD_TS_18661_3__.
190 
191    ??? This ought to change with the setting of the fp control word;
192    the value provided by the compiler assumes the widest setting.  */
193 #undef FLT_EVAL_METHOD
194 #ifdef __STDC_WANT_IEC_60559_TYPES_EXT__
195 #define FLT_EVAL_METHOD __FLT_EVAL_METHOD_TS_18661_3__
196 #else
197 #define FLT_EVAL_METHOD	__FLT_EVAL_METHOD__
198 #endif
199 
200 /* Number of decimal digits, n, such that any floating-point number in the
201    widest supported floating type with pmax radix b digits can be rounded
202    to a floating-point number with n decimal digits and back again without
203    change to the value,
204 
205 	pmax * log10(b)			if b is a power of 10
206 	ceil(1 + pmax * log10(b))	otherwise
207 */
208 #undef DECIMAL_DIG
209 #define DECIMAL_DIG	__DECIMAL_DIG__
210 
211 #endif /* C99 */
212 
213 #if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) \
214      || (defined (__cplusplus) && __cplusplus >= 201703L)
215 /* Versions of DECIMAL_DIG for each floating-point type.  */
216 #undef FLT_DECIMAL_DIG
217 #undef DBL_DECIMAL_DIG
218 #undef LDBL_DECIMAL_DIG
219 #define FLT_DECIMAL_DIG		__FLT_DECIMAL_DIG__
220 #define DBL_DECIMAL_DIG		__DBL_DECIMAL_DIG__
221 #define LDBL_DECIMAL_DIG	__LDBL_DECIMAL_DIG__
222 
223 /* Whether types support subnormal numbers.  */
224 #undef FLT_HAS_SUBNORM
225 #undef DBL_HAS_SUBNORM
226 #undef LDBL_HAS_SUBNORM
227 #define FLT_HAS_SUBNORM		__FLT_HAS_DENORM__
228 #define DBL_HAS_SUBNORM		__DBL_HAS_DENORM__
229 #define LDBL_HAS_SUBNORM	__LDBL_HAS_DENORM__
230 
231 /* Minimum positive values, including subnormals.  */
232 #undef FLT_TRUE_MIN
233 #undef DBL_TRUE_MIN
234 #undef LDBL_TRUE_MIN
235 #define FLT_TRUE_MIN	__FLT_DENORM_MIN__
236 #define DBL_TRUE_MIN	__DBL_DENORM_MIN__
237 #define LDBL_TRUE_MIN	__LDBL_DENORM_MIN__
238 
239 #endif /* C11 */
240 
241 #ifdef __STDC_WANT_IEC_60559_BFP_EXT__
242 /* Number of decimal digits for which conversions between decimal
243    character strings and binary formats, in both directions, are
244    correctly rounded.  */
245 #define CR_DECIMAL_DIG	__UINTMAX_MAX__
246 #endif
247 
248 #ifdef __STDC_WANT_IEC_60559_TYPES_EXT__
249 /* Constants for _FloatN and _FloatNx types from TS 18661-3.  See
250    comments above for their semantics.  */
251 
252 #ifdef __FLT16_MANT_DIG__
253 #undef FLT16_MANT_DIG
254 #define FLT16_MANT_DIG		__FLT16_MANT_DIG__
255 #undef FLT16_DIG
256 #define FLT16_DIG		__FLT16_DIG__
257 #undef FLT16_MIN_EXP
258 #define FLT16_MIN_EXP		__FLT16_MIN_EXP__
259 #undef FLT16_MIN_10_EXP
260 #define FLT16_MIN_10_EXP	__FLT16_MIN_10_EXP__
261 #undef FLT16_MAX_EXP
262 #define FLT16_MAX_EXP		__FLT16_MAX_EXP__
263 #undef FLT16_MAX_10_EXP
264 #define FLT16_MAX_10_EXP	__FLT16_MAX_10_EXP__
265 #undef FLT16_MAX
266 #define FLT16_MAX		__FLT16_MAX__
267 #undef FLT16_EPSILON
268 #define FLT16_EPSILON		__FLT16_EPSILON__
269 #undef FLT16_MIN
270 #define FLT16_MIN		__FLT16_MIN__
271 #undef FLT16_DECIMAL_DIG
272 #define FLT16_DECIMAL_DIG	__FLT16_DECIMAL_DIG__
273 #undef FLT16_TRUE_MIN
274 #define FLT16_TRUE_MIN		__FLT16_DENORM_MIN__
275 #endif /* __FLT16_MANT_DIG__.  */
276 
277 #ifdef __FLT32_MANT_DIG__
278 #undef FLT32_MANT_DIG
279 #define FLT32_MANT_DIG		__FLT32_MANT_DIG__
280 #undef FLT32_DIG
281 #define FLT32_DIG		__FLT32_DIG__
282 #undef FLT32_MIN_EXP
283 #define FLT32_MIN_EXP		__FLT32_MIN_EXP__
284 #undef FLT32_MIN_10_EXP
285 #define FLT32_MIN_10_EXP	__FLT32_MIN_10_EXP__
286 #undef FLT32_MAX_EXP
287 #define FLT32_MAX_EXP		__FLT32_MAX_EXP__
288 #undef FLT32_MAX_10_EXP
289 #define FLT32_MAX_10_EXP	__FLT32_MAX_10_EXP__
290 #undef FLT32_MAX
291 #define FLT32_MAX		__FLT32_MAX__
292 #undef FLT32_EPSILON
293 #define FLT32_EPSILON		__FLT32_EPSILON__
294 #undef FLT32_MIN
295 #define FLT32_MIN		__FLT32_MIN__
296 #undef FLT32_DECIMAL_DIG
297 #define FLT32_DECIMAL_DIG	__FLT32_DECIMAL_DIG__
298 #undef FLT32_TRUE_MIN
299 #define FLT32_TRUE_MIN		__FLT32_DENORM_MIN__
300 #endif /* __FLT32_MANT_DIG__.  */
301 
302 #ifdef __FLT64_MANT_DIG__
303 #undef FLT64_MANT_DIG
304 #define FLT64_MANT_DIG		__FLT64_MANT_DIG__
305 #undef FLT64_DIG
306 #define FLT64_DIG		__FLT64_DIG__
307 #undef FLT64_MIN_EXP
308 #define FLT64_MIN_EXP		__FLT64_MIN_EXP__
309 #undef FLT64_MIN_10_EXP
310 #define FLT64_MIN_10_EXP	__FLT64_MIN_10_EXP__
311 #undef FLT64_MAX_EXP
312 #define FLT64_MAX_EXP		__FLT64_MAX_EXP__
313 #undef FLT64_MAX_10_EXP
314 #define FLT64_MAX_10_EXP	__FLT64_MAX_10_EXP__
315 #undef FLT64_MAX
316 #define FLT64_MAX		__FLT64_MAX__
317 #undef FLT64_EPSILON
318 #define FLT64_EPSILON		__FLT64_EPSILON__
319 #undef FLT64_MIN
320 #define FLT64_MIN		__FLT64_MIN__
321 #undef FLT64_DECIMAL_DIG
322 #define FLT64_DECIMAL_DIG	__FLT64_DECIMAL_DIG__
323 #undef FLT64_TRUE_MIN
324 #define FLT64_TRUE_MIN		__FLT64_DENORM_MIN__
325 #endif /* __FLT64_MANT_DIG__.  */
326 
327 #ifdef __FLT128_MANT_DIG__
328 #undef FLT128_MANT_DIG
329 #define FLT128_MANT_DIG		__FLT128_MANT_DIG__
330 #undef FLT128_DIG
331 #define FLT128_DIG		__FLT128_DIG__
332 #undef FLT128_MIN_EXP
333 #define FLT128_MIN_EXP		__FLT128_MIN_EXP__
334 #undef FLT128_MIN_10_EXP
335 #define FLT128_MIN_10_EXP	__FLT128_MIN_10_EXP__
336 #undef FLT128_MAX_EXP
337 #define FLT128_MAX_EXP		__FLT128_MAX_EXP__
338 #undef FLT128_MAX_10_EXP
339 #define FLT128_MAX_10_EXP	__FLT128_MAX_10_EXP__
340 #undef FLT128_MAX
341 #define FLT128_MAX		__FLT128_MAX__
342 #undef FLT128_EPSILON
343 #define FLT128_EPSILON		__FLT128_EPSILON__
344 #undef FLT128_MIN
345 #define FLT128_MIN		__FLT128_MIN__
346 #undef FLT128_DECIMAL_DIG
347 #define FLT128_DECIMAL_DIG	__FLT128_DECIMAL_DIG__
348 #undef FLT128_TRUE_MIN
349 #define FLT128_TRUE_MIN		__FLT128_DENORM_MIN__
350 #endif /* __FLT128_MANT_DIG__.  */
351 
352 #ifdef __FLT32X_MANT_DIG__
353 #undef FLT32X_MANT_DIG
354 #define FLT32X_MANT_DIG		__FLT32X_MANT_DIG__
355 #undef FLT32X_DIG
356 #define FLT32X_DIG		__FLT32X_DIG__
357 #undef FLT32X_MIN_EXP
358 #define FLT32X_MIN_EXP		__FLT32X_MIN_EXP__
359 #undef FLT32X_MIN_10_EXP
360 #define FLT32X_MIN_10_EXP	__FLT32X_MIN_10_EXP__
361 #undef FLT32X_MAX_EXP
362 #define FLT32X_MAX_EXP		__FLT32X_MAX_EXP__
363 #undef FLT32X_MAX_10_EXP
364 #define FLT32X_MAX_10_EXP	__FLT32X_MAX_10_EXP__
365 #undef FLT32X_MAX
366 #define FLT32X_MAX		__FLT32X_MAX__
367 #undef FLT32X_EPSILON
368 #define FLT32X_EPSILON		__FLT32X_EPSILON__
369 #undef FLT32X_MIN
370 #define FLT32X_MIN		__FLT32X_MIN__
371 #undef FLT32X_DECIMAL_DIG
372 #define FLT32X_DECIMAL_DIG	__FLT32X_DECIMAL_DIG__
373 #undef FLT32X_TRUE_MIN
374 #define FLT32X_TRUE_MIN		__FLT32X_DENORM_MIN__
375 #endif /* __FLT32X_MANT_DIG__.  */
376 
377 #ifdef __FLT64X_MANT_DIG__
378 #undef FLT64X_MANT_DIG
379 #define FLT64X_MANT_DIG		__FLT64X_MANT_DIG__
380 #undef FLT64X_DIG
381 #define FLT64X_DIG		__FLT64X_DIG__
382 #undef FLT64X_MIN_EXP
383 #define FLT64X_MIN_EXP		__FLT64X_MIN_EXP__
384 #undef FLT64X_MIN_10_EXP
385 #define FLT64X_MIN_10_EXP	__FLT64X_MIN_10_EXP__
386 #undef FLT64X_MAX_EXP
387 #define FLT64X_MAX_EXP		__FLT64X_MAX_EXP__
388 #undef FLT64X_MAX_10_EXP
389 #define FLT64X_MAX_10_EXP	__FLT64X_MAX_10_EXP__
390 #undef FLT64X_MAX
391 #define FLT64X_MAX		__FLT64X_MAX__
392 #undef FLT64X_EPSILON
393 #define FLT64X_EPSILON		__FLT64X_EPSILON__
394 #undef FLT64X_MIN
395 #define FLT64X_MIN		__FLT64X_MIN__
396 #undef FLT64X_DECIMAL_DIG
397 #define FLT64X_DECIMAL_DIG	__FLT64X_DECIMAL_DIG__
398 #undef FLT64X_TRUE_MIN
399 #define FLT64X_TRUE_MIN		__FLT64X_DENORM_MIN__
400 #endif /* __FLT64X_MANT_DIG__.  */
401 
402 #ifdef __FLT128X_MANT_DIG__
403 #undef FLT128X_MANT_DIG
404 #define FLT128X_MANT_DIG	__FLT128X_MANT_DIG__
405 #undef FLT128X_DIG
406 #define FLT128X_DIG		__FLT128X_DIG__
407 #undef FLT128X_MIN_EXP
408 #define FLT128X_MIN_EXP		__FLT128X_MIN_EXP__
409 #undef FLT128X_MIN_10_EXP
410 #define FLT128X_MIN_10_EXP	__FLT128X_MIN_10_EXP__
411 #undef FLT128X_MAX_EXP
412 #define FLT128X_MAX_EXP		__FLT128X_MAX_EXP__
413 #undef FLT128X_MAX_10_EXP
414 #define FLT128X_MAX_10_EXP	__FLT128X_MAX_10_EXP__
415 #undef FLT128X_MAX
416 #define FLT128X_MAX		__FLT128X_MAX__
417 #undef FLT128X_EPSILON
418 #define FLT128X_EPSILON		__FLT128X_EPSILON__
419 #undef FLT128X_MIN
420 #define FLT128X_MIN		__FLT128X_MIN__
421 #undef FLT128X_DECIMAL_DIG
422 #define FLT128X_DECIMAL_DIG	__FLT128X_DECIMAL_DIG__
423 #undef FLT128X_TRUE_MIN
424 #define FLT128X_TRUE_MIN	__FLT128X_DENORM_MIN__
425 #endif /* __FLT128X_MANT_DIG__.  */
426 
427 #endif /* __STDC_WANT_IEC_60559_TYPES_EXT__.  */
428 
429 #ifdef __STDC_WANT_DEC_FP__
430 /* Draft Technical Report 24732, extension for decimal floating-point
431    arithmetic: Characteristic of decimal floating types <float.h>.  */
432 
433 /* Number of base-FLT_RADIX digits in the significand, p.  */
434 #undef DEC32_MANT_DIG
435 #undef DEC64_MANT_DIG
436 #undef DEC128_MANT_DIG
437 #define DEC32_MANT_DIG	__DEC32_MANT_DIG__
438 #define DEC64_MANT_DIG	__DEC64_MANT_DIG__
439 #define DEC128_MANT_DIG	__DEC128_MANT_DIG__
440 
441 /* Minimum exponent. */
442 #undef DEC32_MIN_EXP
443 #undef DEC64_MIN_EXP
444 #undef DEC128_MIN_EXP
445 #define DEC32_MIN_EXP	__DEC32_MIN_EXP__
446 #define DEC64_MIN_EXP	__DEC64_MIN_EXP__
447 #define DEC128_MIN_EXP	__DEC128_MIN_EXP__
448 
449 /* Maximum exponent. */
450 #undef DEC32_MAX_EXP
451 #undef DEC64_MAX_EXP
452 #undef DEC128_MAX_EXP
453 #define DEC32_MAX_EXP	__DEC32_MAX_EXP__
454 #define DEC64_MAX_EXP	__DEC64_MAX_EXP__
455 #define DEC128_MAX_EXP	__DEC128_MAX_EXP__
456 
457 /* Maximum representable finite decimal floating-point number
458    (there are 6, 15, and 33 9s after the decimal points respectively). */
459 #undef DEC32_MAX
460 #undef DEC64_MAX
461 #undef DEC128_MAX
462 #define DEC32_MAX   __DEC32_MAX__
463 #define DEC64_MAX   __DEC64_MAX__
464 #define DEC128_MAX  __DEC128_MAX__
465 
466 /* The difference between 1 and the least value greater than 1 that is
467    representable in the given floating point type. */
468 #undef DEC32_EPSILON
469 #undef DEC64_EPSILON
470 #undef DEC128_EPSILON
471 #define DEC32_EPSILON	__DEC32_EPSILON__
472 #define DEC64_EPSILON	__DEC64_EPSILON__
473 #define DEC128_EPSILON	__DEC128_EPSILON__
474 
475 /* Minimum normalized positive floating-point number. */
476 #undef DEC32_MIN
477 #undef DEC64_MIN
478 #undef DEC128_MIN
479 #define DEC32_MIN	__DEC32_MIN__
480 #define DEC64_MIN	__DEC64_MIN__
481 #define DEC128_MIN	__DEC128_MIN__
482 
483 /* Minimum subnormal positive floating-point number. */
484 #undef DEC32_SUBNORMAL_MIN
485 #undef DEC64_SUBNORMAL_MIN
486 #undef DEC128_SUBNORMAL_MIN
487 #define DEC32_SUBNORMAL_MIN       __DEC32_SUBNORMAL_MIN__
488 #define DEC64_SUBNORMAL_MIN       __DEC64_SUBNORMAL_MIN__
489 #define DEC128_SUBNORMAL_MIN      __DEC128_SUBNORMAL_MIN__
490 
491 /* The floating-point expression evaluation method.
492          -1  indeterminate
493          0  evaluate all operations and constants just to the range and
494             precision of the type
495          1  evaluate operations and constants of type _Decimal32
496 	    and _Decimal64 to the range and precision of the _Decimal64
497             type, evaluate _Decimal128 operations and constants to the
498 	    range and precision of the _Decimal128 type;
499 	 2  evaluate all operations and constants to the range and
500 	    precision of the _Decimal128 type.  */
501 
502 #undef DEC_EVAL_METHOD
503 #define DEC_EVAL_METHOD	__DEC_EVAL_METHOD__
504 
505 #endif /* __STDC_WANT_DEC_FP__ */
506 
507 #endif /* _FLOAT_H___ */
508