OSDN Git Service

Standardize header guards.
[pf3gnuchains/gcc-fork.git] / gcc / real.h
1 /* Definitions of floating-point access for GNU compiler.
2    Copyright (C) 1989, 1991, 1994, 1996, 1997, 1998,
3    1999, 2000 Free Software Foundation, Inc.
4
5 This file is part of GNU CC.
6
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING.  If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA.  */
21
22 #ifndef GCC_REAL_H
23 #define GCC_REAL_H
24
25 /* Define codes for all the float formats that we know of.  */
26 #define UNKNOWN_FLOAT_FORMAT 0
27 #define IEEE_FLOAT_FORMAT 1
28 #define VAX_FLOAT_FORMAT 2
29 #define IBM_FLOAT_FORMAT 3
30 #define C4X_FLOAT_FORMAT 4
31
32 /* Default to IEEE float if not specified.  Nearly all machines use it.  */
33
34 #ifndef TARGET_FLOAT_FORMAT
35 #define TARGET_FLOAT_FORMAT     IEEE_FLOAT_FORMAT
36 #endif
37
38 #ifndef HOST_FLOAT_FORMAT
39 #define HOST_FLOAT_FORMAT       IEEE_FLOAT_FORMAT
40 #endif
41
42 #if TARGET_FLOAT_FORMAT == IEEE_FLOAT_FORMAT
43 #define REAL_INFINITY
44 #endif
45
46 /* If FLOAT_WORDS_BIG_ENDIAN and HOST_FLOAT_WORDS_BIG_ENDIAN are not defined
47    in the header files, then this implies the word-endianness is the same as
48    for integers.  */
49
50 /* This is defined 0 or 1, like WORDS_BIG_ENDIAN.  */
51 #ifndef FLOAT_WORDS_BIG_ENDIAN
52 #define FLOAT_WORDS_BIG_ENDIAN WORDS_BIG_ENDIAN
53 #endif
54
55 /* This is defined 0 or 1, unlike HOST_WORDS_BIG_ENDIAN.  */
56 #ifndef HOST_FLOAT_WORDS_BIG_ENDIAN
57 #ifdef HOST_WORDS_BIG_ENDIAN
58 #define HOST_FLOAT_WORDS_BIG_ENDIAN 1
59 #else
60 #define HOST_FLOAT_WORDS_BIG_ENDIAN 0
61 #endif
62 #endif
63
64 /* Defining REAL_ARITHMETIC invokes a floating point emulator
65    that can produce a target machine format differing by more
66    than just endian-ness from the host's format.  The emulator
67    is also used to support extended real XFmode.  */
68 #ifndef LONG_DOUBLE_TYPE_SIZE
69 #define LONG_DOUBLE_TYPE_SIZE 64
70 #endif
71 /* MAX_LONG_DOUBLE_TYPE_SIZE is a constant tested by #if.
72    LONG_DOUBLE_TYPE_SIZE can vary at compiler run time.
73    So long as macros like REAL_VALUE_TO_TARGET_LONG_DOUBLE cannot
74    vary too, however, then XFmode and TFmode long double
75    cannot both be supported at the same time.  */
76 #ifndef MAX_LONG_DOUBLE_TYPE_SIZE
77 #define MAX_LONG_DOUBLE_TYPE_SIZE LONG_DOUBLE_TYPE_SIZE
78 #endif
79 #if (MAX_LONG_DOUBLE_TYPE_SIZE == 96) || (MAX_LONG_DOUBLE_TYPE_SIZE == 128)
80 #ifndef REAL_ARITHMETIC
81 #define REAL_ARITHMETIC
82 #endif
83 #endif
84 #ifdef REAL_ARITHMETIC
85 /* **** Start of software floating point emulator interface macros **** */
86
87 /* Support 80-bit extended real XFmode if LONG_DOUBLE_TYPE_SIZE
88    has been defined to be 96 in the tm.h machine file. */
89 #if (MAX_LONG_DOUBLE_TYPE_SIZE == 96)
90 #define REAL_IS_NOT_DOUBLE
91 #define REAL_ARITHMETIC
92 typedef struct {
93   HOST_WIDE_INT r[(11 + sizeof (HOST_WIDE_INT))/(sizeof (HOST_WIDE_INT))];
94 } realvaluetype;
95 #define REAL_VALUE_TYPE realvaluetype
96
97 #else /* no XFmode support */
98
99 #if (MAX_LONG_DOUBLE_TYPE_SIZE == 128)
100
101 #define REAL_IS_NOT_DOUBLE
102 #define REAL_ARITHMETIC
103 typedef struct {
104   HOST_WIDE_INT r[(19 + sizeof (HOST_WIDE_INT))/(sizeof (HOST_WIDE_INT))];
105 } realvaluetype;
106 #define REAL_VALUE_TYPE realvaluetype
107
108 #else /* not TFmode */
109
110 #if HOST_FLOAT_FORMAT != TARGET_FLOAT_FORMAT
111 /* If no XFmode support, then a REAL_VALUE_TYPE is 64 bits wide
112    but it is not necessarily a host machine double. */
113 #define REAL_IS_NOT_DOUBLE
114 typedef struct {
115   HOST_WIDE_INT r[(7 + sizeof (HOST_WIDE_INT))/(sizeof (HOST_WIDE_INT))];
116 } realvaluetype;
117 #define REAL_VALUE_TYPE realvaluetype
118 #else
119 /* If host and target formats are compatible, then a REAL_VALUE_TYPE
120    is actually a host machine double. */
121 #define REAL_VALUE_TYPE double
122 #endif
123
124 #endif /* no TFmode support */
125 #endif /* no XFmode support */
126
127 extern unsigned int significand_size    PARAMS ((enum machine_mode));
128
129 /* If emulation has been enabled by defining REAL_ARITHMETIC or by
130    setting LONG_DOUBLE_TYPE_SIZE to 96 or 128, then define macros so that
131    they invoke emulator functions. This will succeed only if the machine
132    files have been updated to use these macros in place of any
133    references to host machine `double' or `float' types.  */
134 #ifdef REAL_ARITHMETIC
135 #undef REAL_ARITHMETIC
136 #define REAL_ARITHMETIC(value, code, d1, d2) \
137   earith (&(value), (code), &(d1), &(d2))
138
139 /* Declare functions in real.c. */
140 extern void earith              PARAMS ((REAL_VALUE_TYPE *, int,
141                                        REAL_VALUE_TYPE *, REAL_VALUE_TYPE *));
142 extern REAL_VALUE_TYPE etrunci  PARAMS ((REAL_VALUE_TYPE));
143 extern REAL_VALUE_TYPE etruncui PARAMS ((REAL_VALUE_TYPE));
144 extern REAL_VALUE_TYPE ereal_negate PARAMS ((REAL_VALUE_TYPE));
145 extern HOST_WIDE_INT efixi      PARAMS ((REAL_VALUE_TYPE));
146 extern unsigned HOST_WIDE_INT efixui PARAMS ((REAL_VALUE_TYPE));
147 extern void ereal_from_int      PARAMS ((REAL_VALUE_TYPE *,
148                                        HOST_WIDE_INT, HOST_WIDE_INT,
149                                        enum machine_mode));
150 extern void ereal_from_uint     PARAMS ((REAL_VALUE_TYPE *,
151                                        unsigned HOST_WIDE_INT,
152                                        unsigned HOST_WIDE_INT,
153                                        enum machine_mode));
154 extern void ereal_to_int        PARAMS ((HOST_WIDE_INT *, HOST_WIDE_INT *,
155                                        REAL_VALUE_TYPE));
156 extern REAL_VALUE_TYPE ereal_ldexp PARAMS ((REAL_VALUE_TYPE, int));
157
158 extern void etartdouble         PARAMS ((REAL_VALUE_TYPE, long *));
159 extern void etarldouble         PARAMS ((REAL_VALUE_TYPE, long *));
160 extern void etardouble          PARAMS ((REAL_VALUE_TYPE, long *));
161 extern long etarsingle          PARAMS ((REAL_VALUE_TYPE));
162 extern void ereal_to_decimal    PARAMS ((REAL_VALUE_TYPE, char *));
163 extern int ereal_cmp            PARAMS ((REAL_VALUE_TYPE, REAL_VALUE_TYPE));
164 extern int ereal_isneg          PARAMS ((REAL_VALUE_TYPE));
165 extern REAL_VALUE_TYPE ereal_unto_float PARAMS ((long));
166 extern REAL_VALUE_TYPE ereal_unto_double PARAMS ((long *));
167 extern REAL_VALUE_TYPE ereal_from_float PARAMS ((HOST_WIDE_INT));
168 extern REAL_VALUE_TYPE ereal_from_double PARAMS ((HOST_WIDE_INT *));
169
170 #define REAL_VALUES_EQUAL(x, y) (ereal_cmp ((x), (y)) == 0)
171 /* true if x < y : */
172 #define REAL_VALUES_LESS(x, y) (ereal_cmp ((x), (y)) == -1)
173 #define REAL_VALUE_LDEXP(x, n) ereal_ldexp (x, n)
174
175 /* These return REAL_VALUE_TYPE: */
176 #define REAL_VALUE_RNDZINT(x) (etrunci (x))
177 #define REAL_VALUE_UNSIGNED_RNDZINT(x) (etruncui (x))
178 #define REAL_VALUE_TRUNCATE(mode, x)  real_value_truncate (mode, x)
179
180 /* These return HOST_WIDE_INT: */
181 /* Convert a floating-point value to integer, rounding toward zero.  */
182 #define REAL_VALUE_FIX(x) (efixi (x))
183 /* Convert a floating-point value to unsigned integer, rounding
184    toward zero. */
185 #define REAL_VALUE_UNSIGNED_FIX(x) (efixui (x))
186
187 /* Convert ASCII string S to floating point in mode M.
188    Decimal input uses ATOF.  Hexadecimal uses HTOF.  */
189 #define REAL_VALUE_ATOF(s,m) ereal_atof(s,m)
190 #define REAL_VALUE_HTOF(s,m) ereal_atof(s,m)
191
192 #define REAL_VALUE_NEGATE ereal_negate
193
194 #define REAL_VALUE_MINUS_ZERO(x) \
195  ((ereal_cmp (x, dconst0) == 0) && (ereal_isneg (x) != 0 ))
196
197 #define REAL_VALUE_TO_INT ereal_to_int
198
199 /* Here the cast to HOST_WIDE_INT sign-extends arguments such as ~0.  */
200 #define REAL_VALUE_FROM_INT(d, lo, hi, mode) \
201   ereal_from_int (&d, (HOST_WIDE_INT) (lo), (HOST_WIDE_INT) (hi), mode)
202
203 #define REAL_VALUE_FROM_UNSIGNED_INT(d, lo, hi, mode) \
204   ereal_from_uint (&d, lo, hi, mode)
205
206 /* IN is a REAL_VALUE_TYPE.  OUT is an array of longs. */
207 #if defined(INTEL_EXTENDED_IEEE_FORMAT) && MAX_LONG_DOUBLE_TYPE_SIZE == 128
208 #define REAL_VALUE_TO_TARGET_LONG_DOUBLE(IN, OUT) (etarldouble ((IN), (OUT)))
209 #else
210 #define REAL_VALUE_TO_TARGET_LONG_DOUBLE(IN, OUT)               \
211    (LONG_DOUBLE_TYPE_SIZE == 64 ? etardouble ((IN), (OUT))      \
212     : LONG_DOUBLE_TYPE_SIZE == 96 ? etarldouble ((IN), (OUT))   \
213     : LONG_DOUBLE_TYPE_SIZE == 128 ? etartdouble ((IN), (OUT))  \
214     : abort())
215 #endif
216 #define REAL_VALUE_TO_TARGET_DOUBLE(IN, OUT) (etardouble ((IN), (OUT)))
217
218 /* IN is a REAL_VALUE_TYPE.  OUT is a long. */
219 #define REAL_VALUE_TO_TARGET_SINGLE(IN, OUT) ((OUT) = etarsingle ((IN)))
220
221 /* Inverse of REAL_VALUE_TO_TARGET_DOUBLE. */
222 #define REAL_VALUE_UNTO_TARGET_DOUBLE(d)  (ereal_unto_double (d))
223
224 /* Inverse of REAL_VALUE_TO_TARGET_SINGLE. */
225 #define REAL_VALUE_UNTO_TARGET_SINGLE(f)  (ereal_unto_float (f))
226
227 /* d is an array of HOST_WIDE_INT that holds a double precision
228    value in the target computer's floating point format. */
229 #define REAL_VALUE_FROM_TARGET_DOUBLE(d)  (ereal_from_double (d))
230
231 /* f is a HOST_WIDE_INT containing a single precision target float value. */
232 #define REAL_VALUE_FROM_TARGET_SINGLE(f)  (ereal_from_float (f))
233
234 /* Conversions to decimal ASCII string.  */
235 #define REAL_VALUE_TO_DECIMAL(r, fmt, s) (ereal_to_decimal (r, s))
236
237 #endif /* REAL_ARITHMETIC defined */
238
239 /* **** End of software floating point emulator interface macros **** */
240 #else /* No XFmode or TFmode and REAL_ARITHMETIC not defined */
241
242 /* old interface */
243 #ifdef REAL_ARITHMETIC
244 /* Defining REAL_IS_NOT_DOUBLE breaks certain initializations
245    when REAL_ARITHMETIC etc. are not defined.  */
246
247 /* Now see if the host and target machines use the same format. 
248    If not, define REAL_IS_NOT_DOUBLE (even if we end up representing
249    reals as doubles because we have no better way in this cross compiler.)
250    This turns off various optimizations that can happen when we know the
251    compiler's float format matches the target's float format.
252    */
253 #if HOST_FLOAT_FORMAT != TARGET_FLOAT_FORMAT
254 #define REAL_IS_NOT_DOUBLE
255 #ifndef REAL_VALUE_TYPE
256 typedef struct {
257     HOST_WIDE_INT r[sizeof (double)/sizeof (HOST_WIDE_INT)];
258   } realvaluetype;
259 #define REAL_VALUE_TYPE realvaluetype
260 #endif /* no REAL_VALUE_TYPE */
261 #endif /* formats differ */
262 #endif /* 0 */
263
264 #endif /* emulator not used */
265
266 /* If we are not cross-compiling, use a `double' to represent the
267    floating-point value.  Otherwise, use some other type
268    (probably a struct containing an array of longs).  */
269 #ifndef REAL_VALUE_TYPE
270 #define REAL_VALUE_TYPE double
271 #else
272 #define REAL_IS_NOT_DOUBLE
273 #endif
274
275 #if HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT
276
277 /* Convert a type `double' value in host format first to a type `float'
278    value in host format and then to a single type `long' value which
279    is the bitwise equivalent of the `float' value.  */
280 #ifndef REAL_VALUE_TO_TARGET_SINGLE
281 #define REAL_VALUE_TO_TARGET_SINGLE(IN, OUT)            \
282 do {                                                    \
283   union {                                               \
284     float f;                                            \
285     HOST_WIDE_INT l;                                    \
286   } u;                                                  \
287   if (sizeof(HOST_WIDE_INT) < sizeof(float))            \
288     abort();                                            \
289   u.l = 0;                                              \
290   u.f = (IN);                                           \
291   (OUT) = u.l;                                          \
292 } while (0)
293 #endif
294
295 /* Convert a type `double' value in host format to a pair of type `long'
296    values which is its bitwise equivalent, but put the two words into
297    proper word order for the target.  */
298 #ifndef REAL_VALUE_TO_TARGET_DOUBLE
299 #define REAL_VALUE_TO_TARGET_DOUBLE(IN, OUT)                            \
300 do {                                                                    \
301   union {                                                               \
302     REAL_VALUE_TYPE f;                                                  \
303     HOST_WIDE_INT l[2];                                                 \
304   } u;                                                                  \
305   if (sizeof(HOST_WIDE_INT) * 2 < sizeof(REAL_VALUE_TYPE))              \
306     abort();                                                            \
307   u.l[0] = u.l[1] = 0;                                                  \
308   u.f = (IN);                                                           \
309   if (HOST_FLOAT_WORDS_BIG_ENDIAN == FLOAT_WORDS_BIG_ENDIAN)            \
310     (OUT)[0] = u.l[0], (OUT)[1] = u.l[1];                               \
311   else                                                                  \
312     (OUT)[1] = u.l[0], (OUT)[0] = u.l[1];                               \
313 } while (0)
314 #endif
315 #endif /* HOST_FLOAT_FORMAT == TARGET_FLOAT_FORMAT */
316
317 /* In this configuration, double and long double are the same. */
318 #ifndef REAL_VALUE_TO_TARGET_LONG_DOUBLE
319 #define REAL_VALUE_TO_TARGET_LONG_DOUBLE(a, b) REAL_VALUE_TO_TARGET_DOUBLE (a, b)
320 #endif
321
322 /* Compare two floating-point objects for bitwise identity.
323    This is not the same as comparing for equality on IEEE hosts:
324    -0.0 equals 0.0 but they are not identical, and conversely
325    two NaNs might be identical but they cannot be equal.  */
326 #define REAL_VALUES_IDENTICAL(x, y) \
327   (!memcmp ((char *) &(x), (char *) &(y), sizeof (REAL_VALUE_TYPE)))
328
329 /* Compare two floating-point values for equality.  */
330 #ifndef REAL_VALUES_EQUAL
331 #define REAL_VALUES_EQUAL(x, y) ((x) == (y))
332 #endif
333
334 /* Compare two floating-point values for less than.  */
335 #ifndef REAL_VALUES_LESS
336 #define REAL_VALUES_LESS(x, y) ((x) < (y))
337 #endif
338
339 /* Truncate toward zero to an integer floating-point value.  */
340 #ifndef REAL_VALUE_RNDZINT
341 #define REAL_VALUE_RNDZINT(x) ((double) ((int) (x)))
342 #endif
343
344 /* Truncate toward zero to an unsigned integer floating-point value.  */
345 #ifndef REAL_VALUE_UNSIGNED_RNDZINT
346 #define REAL_VALUE_UNSIGNED_RNDZINT(x) ((double) ((unsigned int) (x)))
347 #endif
348
349 /* Convert a floating-point value to integer, rounding toward zero.  */
350 #ifndef REAL_VALUE_FIX
351 #define REAL_VALUE_FIX(x) ((int) (x))
352 #endif
353
354 /* Convert a floating-point value to unsigned integer, rounding
355    toward zero. */
356 #ifndef REAL_VALUE_UNSIGNED_FIX
357 #define REAL_VALUE_UNSIGNED_FIX(x) ((unsigned int) (x))
358 #endif
359
360 /* Scale X by Y powers of 2.  */
361 #ifndef REAL_VALUE_LDEXP
362 #define REAL_VALUE_LDEXP(x, y) ldexp (x, y)
363 extern double ldexp PARAMS ((double, int));
364 #endif
365
366 /* Convert the string X to a floating-point value.  */
367 #ifndef REAL_VALUE_ATOF
368 #if 1
369 /* Use real.c to convert decimal numbers to binary, ... */
370 #define REAL_VALUE_ATOF(x, s) ereal_atof (x, s)
371 /* Could use ereal_atof here for hexadecimal floats too, but real_hex_to_f
372    is OK and it uses faster native fp arithmetic.  */
373 /* #define REAL_VALUE_HTOF(x, s) ereal_atof (x, s) */
374 #else
375 /* ... or, if you like the host computer's atof, go ahead and use it: */
376 #define REAL_VALUE_ATOF(x, s) atof (x)
377 #if defined (MIPSEL) || defined (MIPSEB)
378 /* MIPS compiler can't handle parens around the function name.
379    This problem *does not* appear to be connected with any
380    macro definition for atof.  It does not seem there is one.  */
381 extern double atof ();
382 #else
383 extern double (atof) ();
384 #endif
385 #endif
386 #endif
387
388 /* Hexadecimal floating constant input for use with host computer's
389    fp arithmetic.  */
390 #ifndef REAL_VALUE_HTOF
391 extern REAL_VALUE_TYPE real_hex_to_f PARAMS ((char *, enum machine_mode));
392 #define REAL_VALUE_HTOF(s,m) real_hex_to_f(s,m)
393 #endif
394
395 /* Negate the floating-point value X.  */
396 #ifndef REAL_VALUE_NEGATE
397 #define REAL_VALUE_NEGATE(x) (- (x))
398 #endif
399
400 /* Truncate the floating-point value X to mode MODE.  This is correct only
401    for the most common case where the host and target have objects of the same
402    size and where `float' is SFmode.  */
403
404 /* Don't use REAL_VALUE_TRUNCATE directly--always call real_value_truncate.  */
405 extern REAL_VALUE_TYPE real_value_truncate PARAMS ((enum machine_mode,
406                                                   REAL_VALUE_TYPE));
407
408 #ifndef REAL_VALUE_TRUNCATE
409 #define REAL_VALUE_TRUNCATE(mode, x) \
410  (GET_MODE_BITSIZE (mode) == sizeof (float) * HOST_BITS_PER_CHAR        \
411   ? (float) (x) : (x))
412 #endif
413
414 /* Determine whether a floating-point value X is infinite. */
415 #ifndef REAL_VALUE_ISINF
416 #define REAL_VALUE_ISINF(x) (target_isinf (x))
417 #endif
418
419 /* Determine whether a floating-point value X is a NaN. */
420 #ifndef REAL_VALUE_ISNAN
421 #define REAL_VALUE_ISNAN(x) (target_isnan (x))
422 #endif
423
424 /* Determine whether a floating-point value X is negative. */
425 #ifndef REAL_VALUE_NEGATIVE
426 #define REAL_VALUE_NEGATIVE(x) (target_negative (x))
427 #endif
428
429 /* Determine whether a floating-point value X is minus 0. */
430 #ifndef REAL_VALUE_MINUS_ZERO
431 #define REAL_VALUE_MINUS_ZERO(x) ((x) == 0 && REAL_VALUE_NEGATIVE (x))
432 #endif
433 \f
434 /* Constant real values 0, 1, 2, and -1.  */
435
436 extern REAL_VALUE_TYPE dconst0;
437 extern REAL_VALUE_TYPE dconst1;
438 extern REAL_VALUE_TYPE dconst2;
439 extern REAL_VALUE_TYPE dconstm1;
440
441 /* Union type used for extracting real values from CONST_DOUBLEs
442    or putting them in.  */
443
444 union real_extract 
445 {
446   REAL_VALUE_TYPE d;
447   HOST_WIDE_INT i[sizeof (REAL_VALUE_TYPE) / sizeof (HOST_WIDE_INT)];
448 };
449
450 /* Given a CONST_DOUBLE in FROM, store into TO the value it represents.  */
451 /* Function to return a real value (not a tree node)
452    from a given integer constant.  */
453 union tree_node;
454 REAL_VALUE_TYPE real_value_from_int_cst PARAMS ((union tree_node *,
455                                                 union tree_node *));
456
457 #define REAL_VALUE_FROM_CONST_DOUBLE(to, from)          \
458 do { union real_extract u;                              \
459      memcpy (&u, &CONST_DOUBLE_LOW ((from)), sizeof u); \
460      to = u.d; } while (0)
461
462 /* Return a CONST_DOUBLE with value R and mode M.  */
463
464 #define CONST_DOUBLE_FROM_REAL_VALUE(r, m) immed_real_const_1 (r,  m)
465 extern struct rtx_def *immed_real_const_1       PARAMS ((REAL_VALUE_TYPE,
466                                                        enum machine_mode));
467
468
469 /* Convert a floating point value `r', that can be interpreted
470    as a host machine float or double, to a decimal ASCII string `s'
471    using printf format string `fmt'.  */
472 #ifndef REAL_VALUE_TO_DECIMAL
473 #define REAL_VALUE_TO_DECIMAL(r, fmt, s) (sprintf (s, fmt, r))
474 #endif
475
476 /* Replace R by 1/R in the given machine mode, if the result is exact.  */
477 extern int exact_real_inverse   PARAMS ((enum machine_mode, REAL_VALUE_TYPE *));
478 extern int target_isnan         PARAMS ((REAL_VALUE_TYPE));
479 extern int target_isinf         PARAMS ((REAL_VALUE_TYPE));
480 extern int target_negative      PARAMS ((REAL_VALUE_TYPE));
481 extern void debug_real          PARAMS ((REAL_VALUE_TYPE));
482 extern REAL_VALUE_TYPE ereal_atof PARAMS ((const char *, enum machine_mode));
483
484 #endif /* ! GCC_REAL_H */