diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2003-03-21 19:44:24 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2003-03-21 19:44:24 +0000 |
commit | ee7b703635bf9c2df1c064a303eceda80d579b2d (patch) | |
tree | 34276b27957934b9d7f222feb508505a186665f6 /sysdeps/mips/memset.S | |
parent | 5d13bfc0c0664750d8d5147f44c2bec2b6917a4e (diff) | |
download | glibc-ee7b703635bf9c2df1c064a303eceda80d579b2d.tar.gz glibc-ee7b703635bf9c2df1c064a303eceda80d579b2d.tar.xz glibc-ee7b703635bf9c2df1c064a303eceda80d579b2d.zip |
* sysdeps/mips/mips64/memcpy.S, sysdeps/mips/mips64/memset.S: New. * sysdeps/mips/memcpy.S, sysdeps/mips/memset.S: Update comments.
2003-03-21 Alexandre Oliva <aoliva@redhat.com> * sysdeps/mips/mips64/memcpy.S, sysdeps/mips/mips64/memset.S: New. * sysdeps/mips/memcpy.S, sysdeps/mips/memset.S: Update comments.
Diffstat (limited to 'sysdeps/mips/memset.S')
-rw-r--r-- | sysdeps/mips/memset.S | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/sysdeps/mips/memset.S b/sysdeps/mips/memset.S index 46811340ec..b372d292f2 100644 --- a/sysdeps/mips/memset.S +++ b/sysdeps/mips/memset.S @@ -21,12 +21,7 @@ #include <endian.h> -/* void *memset(void *s, int c, size_t n). - - This routine could be optimized further for MIPS64, but this is left - as an exercise for the future. When it is done, the file should be kept - as a sisterfile to this one, and placed in the sysdeps/mips/mips64 - directory. */ +/* void *memset(void *s, int c, size_t n). */ #if __BYTE_ORDER == __BIG_ENDIAN # define SWHI swl /* high part is left in big-endian */ @@ -34,13 +29,6 @@ # define SWHI swr /* high part is right in little-endian */ #endif -#ifndef t0 -# define t0 a4 -#endif -#ifndef t1 -# define t1 a5 -#endif - ENTRY (memset) .set noreorder |