Avoid endian.h include in MIPS64 string functions.
authorJoseph Myers <joseph@codesourcery.com>
Sat, 28 Apr 2012 10:41:29 +0000 (03:41 -0700)
committerJoseph Myers <joseph@codesourcery.com>
Sat, 28 Apr 2012 10:41:29 +0000 (03:41 -0700)
ChangeLog.mips
sysdeps/mips/mips64/memcpy.S
sysdeps/mips/mips64/memset.S

index 65ff19d..7b89f08 100644 (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>
 
        * sysdeps/unix/sysv/linux/mips/configure.in (arch_minimum_kernel):
index ae819f6..49ef34d 100644 (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.
    Contributed by Hartvig Ekner <hartvige@mips.com>, 2002.
    Ported to mips3 n32/n64 by Alexandre Oliva <aoliva@redhat.com>
@@ -18,7 +18,6 @@
    <http://www.gnu.org/licenses/>.  */
 
 #include <sysdep.h>
-#include <endian.h>
 #include <sys/asm.h>
 
 
@@ -26,7 +25,7 @@
        
    This could probably be optimized further.  */
 
-#if __BYTE_ORDER == __BIG_ENDIAN
+#if __MIPSEB
 #  define LDHI ldl             /* 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      */
index 9800ed3..a2f9120 100644 (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.
    Contributed by Hartvig Ekner <hartvige@mips.com>, 2002.
    Ported to mips3 n32/n64 by Alexandre Oliva <aoliva@redhat.com>
@@ -18,7 +18,6 @@
    <http://www.gnu.org/licenses/>.  */
 
 #include <sysdep.h>
-#include <endian.h>
 #include <sys/asm.h>
 
 
@@ -26,7 +25,7 @@
        
    This could probably be optimized further.  */
 
-#if __BYTE_ORDER == __BIG_ENDIAN
+#if __MIPSEB
 # define SDHI  sdl             /* high part is left in big-endian      */
 #else
 # define SDHI  sdr             /* high part is right in little-endian  */