2015-02-17 Steve Ellcey <sellcey@imgtec.com>

* sysdeps/mips/bits/endian.h (__MIPSEL): Use #ifdef instead of #if.
This commit is contained in:
Steve Ellcey 2015-02-17 10:04:33 -08:00
parent f20bfc9b5e
commit 2caa4099de
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2015-02-17 Steve Ellcey <sellcey@imgtec.com>
* sysdeps/mips/bits/endian.h (__MIPSEL): Use #ifdef instead of #if.
2015-02-17 Stefan Liebler <stli@linux.vnet.ibm.com>
* sysdeps/unix/sysv/linux/s390/pt-longjmp.c

View File

@ -8,6 +8,6 @@
#ifdef __MIPSEB
# define __BYTE_ORDER __BIG_ENDIAN
#endif
#if __MIPSEL
#ifdef __MIPSEL
# define __BYTE_ORDER __LITTLE_ENDIAN
#endif