diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2007-06-06 19:24:28 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2007-06-06 19:24:28 +0000 |
commit | 1eeaeab85534f9bd6387803564713606a937ab3f (patch) | |
tree | f5ae408fa26bb679735c3d269b35c7e6a63bbab3 /newlib/libc | |
parent | a874abaf378f37a217bf083fc1c283d33c415548 (diff) | |
download | cygnal-1eeaeab85534f9bd6387803564713606a937ab3f.tar.gz cygnal-1eeaeab85534f9bd6387803564713606a937ab3f.tar.bz2 cygnal-1eeaeab85534f9bd6387803564713606a937ab3f.zip |
2007-06-06 Christian Groessler <chris@groessler.org>
* libc/stdlib/ldtoa (_ldcheck): Make sure the setting of
rnd is done after the last local variable declaration.
2007-06-06 Jeff Johnston <jjohnstn@redhat.com>
* libc/stdlib/mprec.h[Just_16]: Make sure that Pack_16 is defined.
Diffstat (limited to 'newlib/libc')
-rw-r--r-- | newlib/libc/stdlib/ldtoa.c | 4 | ||||
-rw-r--r-- | newlib/libc/stdlib/mprec.h | 12 |
2 files changed, 10 insertions, 6 deletions
diff --git a/newlib/libc/stdlib/ldtoa.c b/newlib/libc/stdlib/ldtoa.c index d4457938f..bb12f0cc7 100644 --- a/newlib/libc/stdlib/ldtoa.c +++ b/newlib/libc/stdlib/ldtoa.c @@ -2868,10 +2868,10 @@ unsigned short e[NI]; LDPARMS rnd; LDPARMS *ldp = &rnd; +union uconv du; + rnd.rlast = -1; rnd.rndprc = NBITS; - -union uconv du; du.d = *d; #if LDBL_MANT_DIG == 24 e24toe( &du.pe, e, ldp ); diff --git a/newlib/libc/stdlib/mprec.h b/newlib/libc/stdlib/mprec.h index ba4d2b81b..8c9ad0ef0 100644 --- a/newlib/libc/stdlib/mprec.h +++ b/newlib/libc/stdlib/mprec.h @@ -351,10 +351,14 @@ extern double rnd_prod(double, double), rnd_quot(double, double); * slower. Hence the default is now to store 32 bits per long. */ -#ifndef Pack_32 -#define Pack_32 -#endif -#endif + #ifndef Pack_32 + #define Pack_32 + #endif +#else /* Just_16 */ + #ifndef Pack_16 + #define Pack_16 + #endif +#endif /* Just_16 */ #ifdef Pack_32 #define ULbits 32 |