diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-12-15 19:35:58 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-12-15 19:35:58 +0000 |
commit | 9b359dd0eb913bd8744e0939b21e41c4d70a9971 (patch) | |
tree | f2b9e7ed523b027506f352e39e09516ab2134c05 /sysdeps/i386/i486 | |
parent | 7acb3da9d2d135b5cbf72df1c5aec0339ac2747a (diff) | |
download | glibc-9b359dd0eb913bd8744e0939b21e41c4d70a9971.tar.gz glibc-9b359dd0eb913bd8744e0939b21e41c4d70a9971.tar.xz glibc-9b359dd0eb913bd8744e0939b21e41c4d70a9971.zip |
Update.
2004-12-15 Ulrich Drepper <drepper@redhat.com> * sysdeps/i386/i486/bits/string.h (__strncat_g): Fix i686 implementation.
Diffstat (limited to 'sysdeps/i386/i486')
-rw-r--r-- | sysdeps/i386/i486/bits/string.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/i386/i486/bits/string.h b/sysdeps/i386/i486/bits/string.h index 099d720a4c..0e24081127 100644 --- a/sysdeps/i386/i486/bits/string.h +++ b/sysdeps/i386/i486/bits/string.h @@ -1050,6 +1050,7 @@ __strncat_g (char *__dest, __const char __src[], size_t __n) #ifdef __i686__ __asm__ __volatile__ ("repne; scasb\n" + "movl %%edx, %3\n\t" "decl %1\n\t" "1:\n\t" "decl %3\n\t" @@ -1062,7 +1063,7 @@ __strncat_g (char *__dest, __const char __src[], size_t __n) "2:\n\t" "movb $0,(%1)" : "=&a" (__dummy), "=&D" (__tmp), "=&S" (__src), "=&c" (__n) - : "0" (0), "1" (__tmp), "2" (__src), "3" (__n) + : "0" (0), "1" (__tmp), "2" (__src), "3" (0xffffffff), "d" (__n) : "memory", "cc"); #else --__tmp; |