X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=include%2Ffloatformat.h;h=ce8d6d4add8e69f32519762059bfb24a64de3830;hb=6d350754a32007465f9adbc11b87339e4493b358;hp=0fc8e75dc8b3316a05022406c8d75e296ad9a7be;hpb=f9e9243aad66a7923e30c61cd1749623fa568f79;p=deliverable%2Fbinutils-gdb.git diff --git a/include/floatformat.h b/include/floatformat.h index 0fc8e75dc8..ce8d6d4add 100644 --- a/include/floatformat.h +++ b/include/floatformat.h @@ -1,6 +1,5 @@ /* IEEE floating point support declarations, for GDB, the GNU Debugger. - Copyright 1991, 1994, 1995, 1997, 2000, 2003, 2005 - Free Software Foundation, Inc. + Copyright (C) 1991-2020 Free Software Foundation, Inc. This file is part of GDB. @@ -23,6 +22,10 @@ Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. #include "ansidecl.h" +#ifdef __cplusplus +extern "C" { +#endif + /* A floatformat consists of a sign bit, an exponent and a mantissa. Once the bytes are concatenated according to the byteorder flag, then each of those fields is contiguous. We number the bits with 0 being the most significant @@ -128,7 +131,8 @@ extern const struct floatformat floatformat_ia64_spill_little; extern const struct floatformat floatformat_ia64_quad_big; extern const struct floatformat floatformat_ia64_quad_little; /* IBM long double (double+double). */ -extern const struct floatformat floatformat_ibm_long_double; +extern const struct floatformat floatformat_ibm_long_double_big; +extern const struct floatformat floatformat_ibm_long_double_little; /* Convert from FMT to a double. FROM is the address of the extended float. @@ -148,4 +152,8 @@ floatformat_from_double (const struct floatformat *, const double *, void *); extern int floatformat_is_valid (const struct floatformat *fmt, const void *from); +#ifdef __cplusplus +} +#endif + #endif /* defined (FLOATFORMAT_H) */