diff options
author | DJ Delorie <dj@redhat.com> | 2009-03-30 00:01:29 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2009-03-30 00:01:29 +0000 |
commit | f2be950300e01d47ae4f41fb7481c26319d33d81 (patch) | |
tree | b8e1601a34c5f16ac401608e1a85a3091254543a /libdecnumber/dpd/decimal32.h | |
parent | 4104b747d5a0457c0dd5236796c6b8efafa70bd0 (diff) | |
download | gdb-f2be950300e01d47ae4f41fb7481c26319d33d81.zip gdb-f2be950300e01d47ae4f41fb7481c26319d33d81.tar.gz gdb-f2be950300e01d47ae4f41fb7481c26319d33d81.tar.bz2 |
merge from gcc
Diffstat (limited to 'libdecnumber/dpd/decimal32.h')
-rw-r--r-- | libdecnumber/dpd/decimal32.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libdecnumber/dpd/decimal32.h b/libdecnumber/dpd/decimal32.h index 222ba97..0d53046 100644 --- a/libdecnumber/dpd/decimal32.h +++ b/libdecnumber/dpd/decimal32.h @@ -35,7 +35,7 @@ #if !defined(DECIMAL32) #define DECIMAL32 #define DEC32NAME "decimal32" /* Short name */ - #define DEC32FULLNAME "Decimal 32-bit Number" /* Verbose name */ + #define DEC32FULLNAME "Decimal 32-bit Number" /* Verbose name */ #define DEC32AUTHOR "Mike Cowlishaw" /* Who to blame */ /* parameters for decimal32s */ @@ -46,7 +46,7 @@ #define DECIMAL32_Bias 101 /* bias for the exponent */ #define DECIMAL32_String 15 /* maximum string length, +1 */ #define DECIMAL32_EconL 6 /* exp. continuation length */ - /* highest biased exponent (Elimit-1) */ + /* highest biased exponent (Elimit-1) */ #define DECIMAL32_Ehigh (DECIMAL32_Emax+DECIMAL32_Bias-DECIMAL32_Pmax+1) /* check enough digits, if pre-defined */ @@ -71,18 +71,18 @@ /* special values [top byte excluding sign bit; last two bits are */ /* don't-care for Infinity on input, last bit don't-care for NaN] */ #if !defined(DECIMAL_NaN) - #define DECIMAL_NaN 0x7c /* 0 11111 00 NaN */ + #define DECIMAL_NaN 0x7c /* 0 11111 00 NaN */ #define DECIMAL_sNaN 0x7e /* 0 11111 10 sNaN */ - #define DECIMAL_Inf 0x78 /* 0 11110 00 Infinity */ + #define DECIMAL_Inf 0x78 /* 0 11110 00 Infinity */ #endif /* ---------------------------------------------------------------- */ /* Routines */ /* ---------------------------------------------------------------- */ -#include "decimal32Symbols.h" + #include "decimal32Symbols.h" - /* String conversions */ + /* String conversions */ decimal32 * decimal32FromString(decimal32 *, const char *, decContext *); char * decimal32ToString(const decimal32 *, char *); char * decimal32ToEngString(const decimal32 *, char *); @@ -92,7 +92,7 @@ decContext *); decNumber * decimal32ToNumber(const decimal32 *, decNumber *); - /* Format-dependent utilities */ + /* Format-dependent utilities */ uint32_t decimal32IsCanonical(const decimal32 *); decimal32 * decimal32Canonical(decimal32 *, const decimal32 *); |