summaryrefslogtreecommitdiff
path: root/sysdeps/i386/i686/memset.S
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-01-07 22:36:12 +0000
committerUlrich Drepper <drepper@redhat.com>1999-01-07 22:36:12 +0000
commit6923133b1099c762e381191480d1d87ef00faf38 (patch)
treec39dd78660ebb6a75211c8ed867c7a47e22b4adf /sysdeps/i386/i686/memset.S
parent7ffe2de674d95ec6cad51c3d7bf697301f8217c1 (diff)
Update.
* sysdeps/i386/i686/mempcpy.S: Fix typos. * sysdeps/i386/i686/strcmp.S: New file. * sysdeps/i386/i686/memcpy.S: New file.
Diffstat (limited to 'sysdeps/i386/i686/memset.S')
-rw-r--r--sysdeps/i386/i686/memset.S6
1 files changed, 5 insertions, 1 deletions
diff --git a/sysdeps/i386/i686/memset.S b/sysdeps/i386/i686/memset.S
index 1f753b0350..83f8c50484 100644
--- a/sysdeps/i386/i686/memset.S
+++ b/sysdeps/i386/i686/memset.S
@@ -2,6 +2,7 @@
Highly optimized version for ix86, x>=6.
Copyright (C) 1999 Free Software Foundation, Inc.
This file is part of the GNU C Library.
+ Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public License as
@@ -69,7 +70,10 @@ ENTRY (memset)
rep
stosb
-1: movl 8(%esp), %eax
+1:
+#ifndef memset
+ movl 8(%esp), %eax
+#endif
popl %edi
ret
END (memset)