From 6be7e42550ef83e5bf55b22ea857c1230844bf8a Mon Sep 17 00:00:00 2001 From: bje Date: Thu, 19 Jun 2008 01:13:53 +0000 Subject: * 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 --- gcc/dfp.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'gcc/dfp.c') 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, -- cgit v1.2.1