diff options
author | bje <bje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-06-19 01:13:53 +0000 |
---|---|---|
committer | bje <bje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-06-19 01:13:53 +0000 |
commit | 6be7e42550ef83e5bf55b22ea857c1230844bf8a (patch) | |
tree | 940ffd349ee44abb1c1899dc60f336e184cf035f /gcc/dfp.h | |
parent | 875c97cab89d6be6d1a1f48846d0def558976cba (diff) | |
download | gcc-6be7e42550ef83e5bf55b22ea857c1230844bf8a.tar.gz |
* dfp.h, dfp.c, config/dfp-bit.h, config/dfp-bit.c, real.h,
real.c: Remove references to IEEE 754R.
* doc/install.texi (Configuration): IEEE 754R -> IEEE 754-2008.
* doc/libgcc.texi (Decimal float library routines): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@136933 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/dfp.h')
-rw-r--r-- | gcc/dfp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/dfp.h b/gcc/dfp.h index 1e7bcf7e3ba..4e3bb5e5c8e 100644 --- a/gcc/dfp.h +++ b/gcc/dfp.h @@ -20,12 +20,12 @@ along with GCC; see the file COPYING3. If not see #ifndef GCC_DFP_H #define GCC_DFP_H -/* Encode REAL_VALUE_TYPEs into 32/64/128-bit IEEE 754R encoded values. */ +/* Encode REAL_VALUE_TYPEs into 32/64/128-bit IEEE 754 encoded values. */ void encode_decimal32 (const struct real_format *fmt, long *, const REAL_VALUE_TYPE *); void encode_decimal64 (const struct real_format *fmt, long *, const REAL_VALUE_TYPE *); void decode_decimal128 (const struct real_format *, REAL_VALUE_TYPE *, const long *); -/* Decode 32/64/128-bit IEEE 754R encoded values into REAL_VALUE_TYPEs. */ +/* Decode 32/64/128-bit IEEE 754 encoded values into REAL_VALUE_TYPEs. */ void decode_decimal32 (const struct real_format *, REAL_VALUE_TYPE *, const long *); void decode_decimal64 (const struct real_format *, REAL_VALUE_TYPE *, const long *); void encode_decimal128 (const struct real_format *fmt, long *, const REAL_VALUE_TYPE *); |