2002-01-07 Alan Matsuoka <alanm@redhat.com>

* libc/include/machine/ieeefp.h: Configure d10v doubles to
        be 32 bits if __DOUBLE__ == 32  otherwise doubles are 64 bits.
        libc/include/sys/config.h: Ditto.
This commit is contained in:
Jeff Johnston 2002-01-07 19:33:23 +00:00
parent 11b4cf942d
commit 86b06396f0
3 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2002-01-07 Alan Matsuoka <alanm@redhat.com>
* libc/include/machine/ieeefp.h: Configure d10v doubles to
be 32 bits if __DOUBLE__ == 32 otherwise doubles are 64 bits.
libc/include/sys/config.h: Ditto.
2001-12-28 Corinna Vinschen <corinna@vinschen.de>
* libc/sys/cygwin/sys/utmp.h: Add definition of UTMP_FILE.

View File

@ -138,7 +138,9 @@
#ifdef __D10V__
#define __IEEE_BIG_ENDIAN
#if __DOUBLE__ == 32
#define _DOUBLE_IS_32BITS
#endif
#define __SMALL_BITFIELDS
#endif

View File

@ -38,7 +38,9 @@
#undef UINT_MAX
#define INT_MAX __INT_MAX__
#define UINT_MAX (__INT_MAX__ * 2U + 1)
#if __DOUBLE__ == 32
#define _DOUBLE_IS_32BITS
#endif
#define _POINTER_INT short
#define __IEEE_BIG_ENDIAN
#endif