diff options
author | Ben Elliston <bje@au.ibm.com> | 2008-06-19 01:13:53 +0000 |
---|---|---|
committer | Ben Elliston <bje@gcc.gnu.org> | 2008-06-19 11:13:53 +1000 |
commit | 7292b8e4bac5eaf830e81b38be439719ecee8cf3 (patch) | |
tree | 940ffd349ee44abb1c1899dc60f336e184cf035f /gcc/dfp.c | |
parent | 31dd593cddc4a78e9f2450b890e4a505be98e59c (diff) | |
download | gcc-7292b8e4bac5eaf830e81b38be439719ecee8cf3.tar.gz |
dfp.h, [...]: Remove references to IEEE 754R.
* 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.
From-SVN: r136933
Diffstat (limited to 'gcc/dfp.c')
-rw-r--r-- | gcc/dfp.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/dfp.c b/gcc/dfp.c index 43262380af5..0485430305f 100644 --- a/gcc/dfp.c +++ b/gcc/dfp.c @@ -123,7 +123,7 @@ decimal_to_decnumber (const REAL_VALUE_TYPE *r, decNumber *dn) dn->bits ^= DECNEG; } -/* Encode a real into an IEEE 754R decimal32 type. */ +/* Encode a real into an IEEE 754 decimal32 type. */ void encode_decimal32 (const struct real_format *fmt ATTRIBUTE_UNUSED, @@ -142,7 +142,7 @@ encode_decimal32 (const struct real_format *fmt ATTRIBUTE_UNUSED, buf[0] = *(uint32_t *) d32.bytes; } -/* Decode an IEEE 754R decimal32 type into a real. */ +/* Decode an IEEE 754 decimal32 type into a real. */ void decode_decimal32 (const struct real_format *fmt ATTRIBUTE_UNUSED, @@ -161,7 +161,7 @@ decode_decimal32 (const struct real_format *fmt ATTRIBUTE_UNUSED, decimal_from_decnumber (r, &dn, &set); } -/* Encode a real into an IEEE 754R decimal64 type. */ +/* Encode a real into an IEEE 754 decimal64 type. */ void encode_decimal64 (const struct real_format *fmt ATTRIBUTE_UNUSED, @@ -189,7 +189,7 @@ encode_decimal64 (const struct real_format *fmt ATTRIBUTE_UNUSED, } } -/* Decode an IEEE 754R decimal64 type into a real. */ +/* Decode an IEEE 754 decimal64 type into a real. */ void decode_decimal64 (const struct real_format *fmt ATTRIBUTE_UNUSED, @@ -217,7 +217,7 @@ decode_decimal64 (const struct real_format *fmt ATTRIBUTE_UNUSED, decimal_from_decnumber (r, &dn, &set); } -/* Encode a real into an IEEE 754R decimal128 type. */ +/* Encode a real into an IEEE 754 decimal128 type. */ void encode_decimal128 (const struct real_format *fmt ATTRIBUTE_UNUSED, @@ -249,7 +249,7 @@ encode_decimal128 (const struct real_format *fmt ATTRIBUTE_UNUSED, } } -/* Decode an IEEE 754R decimal128 type into a real. */ +/* Decode an IEEE 754 decimal128 type into a real. */ void decode_decimal128 (const struct real_format *fmt ATTRIBUTE_UNUSED, |