Avoid endian.h include in MIPS64 string functions.

This commit is contained in:
Joseph Myers 2012-04-28 03:41:29 -07:00
parent 7a886e6fb1
commit 896216ffd1
3 changed files with 10 additions and 6 deletions

View File

@ -1,3 +1,9 @@
2012-04-28 Joseph Myers <joseph@codesourcery.com>
* sysdeps/mips/mips64/memcpy.S: Don't include <endian.h>. Test
__MIPSEB instead of __BYTE_ORDER.
* sysdeps/mips/mips64/memset.S: Likewise.
2012-04-27 Joseph Myers <joseph@codesourcery.com> 2012-04-27 Joseph Myers <joseph@codesourcery.com>
* sysdeps/unix/sysv/linux/mips/configure.in (arch_minimum_kernel): * sysdeps/unix/sysv/linux/mips/configure.in (arch_minimum_kernel):

View File

@ -1,4 +1,4 @@
/* Copyright (C) 2002, 2003 Free Software Foundation, Inc. /* Copyright (C) 2002-2012 Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
Contributed by Hartvig Ekner <hartvige@mips.com>, 2002. Contributed by Hartvig Ekner <hartvige@mips.com>, 2002.
Ported to mips3 n32/n64 by Alexandre Oliva <aoliva@redhat.com> Ported to mips3 n32/n64 by Alexandre Oliva <aoliva@redhat.com>
@ -18,7 +18,6 @@
<http://www.gnu.org/licenses/>. */ <http://www.gnu.org/licenses/>. */
#include <sysdep.h> #include <sysdep.h>
#include <endian.h>
#include <sys/asm.h> #include <sys/asm.h>
@ -26,7 +25,7 @@
This could probably be optimized further. */ This could probably be optimized further. */
#if __BYTE_ORDER == __BIG_ENDIAN #if __MIPSEB
# define LDHI ldl /* high part is left in big-endian */ # define LDHI ldl /* high part is left in big-endian */
# define SDHI sdl /* high part is left in big-endian */ # define SDHI sdl /* high part is left in big-endian */
# define LDLO ldr /* low part is right in big-endian */ # define LDLO ldr /* low part is right in big-endian */

View File

@ -1,4 +1,4 @@
/* Copyright (C) 2002, 2003 Free Software Foundation, Inc. /* Copyright (C) 2002-2012 Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
Contributed by Hartvig Ekner <hartvige@mips.com>, 2002. Contributed by Hartvig Ekner <hartvige@mips.com>, 2002.
Ported to mips3 n32/n64 by Alexandre Oliva <aoliva@redhat.com> Ported to mips3 n32/n64 by Alexandre Oliva <aoliva@redhat.com>
@ -18,7 +18,6 @@
<http://www.gnu.org/licenses/>. */ <http://www.gnu.org/licenses/>. */
#include <sysdep.h> #include <sysdep.h>
#include <endian.h>
#include <sys/asm.h> #include <sys/asm.h>
@ -26,7 +25,7 @@
This could probably be optimized further. */ This could probably be optimized further. */
#if __BYTE_ORDER == __BIG_ENDIAN #if __MIPSEB
# define SDHI sdl /* high part is left in big-endian */ # define SDHI sdl /* high part is left in big-endian */
#else #else
# define SDHI sdr /* high part is right in little-endian */ # define SDHI sdr /* high part is right in little-endian */