diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2000-12-14 00:25:06 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2000-12-14 00:25:06 +0000 |
commit | b6182a09dd286f592f2968c324cb2ce36f5b9082 (patch) | |
tree | d5fe53f33018bfa8b1194c5165e815aea1cee9ae /newlib/libc/stdio/vfieeefp.h | |
parent | adbbb0348ccebe74a0dbb93307a6d3f96b757fc0 (diff) | |
download | cygnal-b6182a09dd286f592f2968c324cb2ce36f5b9082.tar.gz cygnal-b6182a09dd286f592f2968c324cb2ce36f5b9082.tar.bz2 cygnal-b6182a09dd286f592f2968c324cb2ce36f5b9082.zip |
2000-12-13 Jeff Johnston <jjohnstn@redhat.com>
* libc/stdlib/ldtoa.c (_ldcheck): New routine
that categorizes a long double as NaN, Infinity, or other.
* libc/stdio/vfprintf.c [WANT_IO_LONG_DBL](_VFPRINTF_R): Removed
isinfl and isnanl static routines which were i386-specific. Changed
calls to the two removed routines to a single _ldcheck call.
* libc/stdio/vfieeefp.h (ldieee): Fixed missing semi-colons.
Diffstat (limited to 'newlib/libc/stdio/vfieeefp.h')
-rw-r--r-- | newlib/libc/stdio/vfieeefp.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/newlib/libc/stdio/vfieeefp.h b/newlib/libc/stdio/vfieeefp.h index de0267223..1b240fcde 100644 --- a/newlib/libc/stdio/vfieeefp.h +++ b/newlib/libc/stdio/vfieeefp.h @@ -70,7 +70,7 @@ struct ldieee unsigned manh:23; unsigned exp:8; unsigned sign:1; -} +}; #elif LDBL_MANT_DIG == 53 struct ldieee { @@ -78,7 +78,7 @@ struct ldieee unsigned manh:32; unsigned exp:11; unsigned sign:1; -} +}; #elif LDBL_MANT_DIG == 64 struct ldieee { @@ -105,7 +105,7 @@ struct ldieee unsigned sign:1; unsigned exp:8; unsigned manh:23; -} +}; #elif LDBL_MANT_DIG == 53 struct ldieee { @@ -113,7 +113,7 @@ struct ldieee unsigned exp:11; unsigned manh:32; unsigned manl:20; -} +}; #elif LDBL_MANT_DIG == 64 struct ldieee { @@ -121,7 +121,7 @@ struct ldieee unsigned exp:15; unsigned manh:32; unsigned manl:32; -} +}; #elif LDBL_MANT_DIG > 64 struct ldieee { |