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:
parent
11b4cf942d
commit
86b06396f0
|
@ -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>
|
2001-12-28 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* libc/sys/cygwin/sys/utmp.h: Add definition of UTMP_FILE.
|
* libc/sys/cygwin/sys/utmp.h: Add definition of UTMP_FILE.
|
||||||
|
|
|
@ -138,7 +138,9 @@
|
||||||
|
|
||||||
#ifdef __D10V__
|
#ifdef __D10V__
|
||||||
#define __IEEE_BIG_ENDIAN
|
#define __IEEE_BIG_ENDIAN
|
||||||
|
#if __DOUBLE__ == 32
|
||||||
#define _DOUBLE_IS_32BITS
|
#define _DOUBLE_IS_32BITS
|
||||||
|
#endif
|
||||||
#define __SMALL_BITFIELDS
|
#define __SMALL_BITFIELDS
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -38,7 +38,9 @@
|
||||||
#undef UINT_MAX
|
#undef UINT_MAX
|
||||||
#define INT_MAX __INT_MAX__
|
#define INT_MAX __INT_MAX__
|
||||||
#define UINT_MAX (__INT_MAX__ * 2U + 1)
|
#define UINT_MAX (__INT_MAX__ * 2U + 1)
|
||||||
|
#if __DOUBLE__ == 32
|
||||||
#define _DOUBLE_IS_32BITS
|
#define _DOUBLE_IS_32BITS
|
||||||
|
#endif
|
||||||
#define _POINTER_INT short
|
#define _POINTER_INT short
|
||||||
#define __IEEE_BIG_ENDIAN
|
#define __IEEE_BIG_ENDIAN
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue