2009-12-17 Ralf Corsépius <ralf.corsepius@rtems.org>

* libc/include/machine/ieeefp.h: Rework __IEEE_*_ENDIAN handling.
        * libc/machine/arm/machine/endian.h: Remove (Conflicts with
        libc/include/machine/endian.h)
This commit is contained in:
Jeff Johnston 2009-12-17 19:26:38 +00:00
parent 9ad56b2726
commit 6fe2eb4c80
3 changed files with 11 additions and 13 deletions

View File

@ -1,3 +1,9 @@
2009-12-17 Ralf Corsépius <ralf.corsepius@rtems.org>
* libc/include/machine/ieeefp.h: Rework __IEEE_*_ENDIAN handling.
* libc/machine/arm/machine/endian.h: Remove (Conflicts with
libc/include/machine/endian.h)
2009-12-17 Ralf Corsépius <ralf.corsepius@rtems.org>
* libc/include/machine/setjmp.h: Set up _JBLEN #ifdef __m68k__.

View File

@ -62,8 +62,12 @@
# define __IEEE_BIG_ENDIAN
# endif
#else
# define __IEEE_BIG_ENDIAN
# ifdef __ARMEL__
# define __IEEE_LITTLE_ENDIAN
# else
# define __IEEE_BIG_ENDIAN
# endif
# ifdef __ARMWEL__
# define __IEEE_BYTES_LITTLE_ENDIAN
# endif
#endif

View File

@ -1,12 +0,0 @@
/* ARM configuration file */
#ifndef _MACHINE_ENDIAN_H
# define _MACHINE_ENDIAN_H
#ifdef __ARMEB__
#define BYTE_ORDER BIG_ENDIAN
#else
#define BYTE_ORDER LITTLE_ENDIAN
#endif
#endif