1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

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

* sysdeps/mips/bits/endian.h (__MIPSEB): Use #ifdef instead of #if.
	* sysdeps/mips/memcpy.S (__MIPSEB): Ditto.
	* sysdeps/mips/memset.S (__MIPSEB): Ditto.
This commit is contained in:
Steve Ellcey
2015-02-13 17:38:06 -08:00
parent 4ab770b7b1
commit e525154e84
4 changed files with 12 additions and 6 deletions

View File

@ -5,7 +5,7 @@
# error "Never use <bits/endian.h> directly; include <endian.h> instead."
#endif
#if __MIPSEB
#ifdef __MIPSEB
# define __BYTE_ORDER __BIG_ENDIAN
#endif
#if __MIPSEL