about summary refs log tree commit diff
path: root/sysdeps/i386/i486/bits
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-11-26 05:46:35 +0000
committerUlrich Drepper <drepper@redhat.com>2000-11-26 05:46:35 +0000
commit68784f809ae820107eb556ee4da46ae55af26e3f (patch)
treef7bf32c1e016eb5e5162d83437889e5e2290d8d8 /sysdeps/i386/i486/bits
parentc3560dfdafe7761efc81f36221dd34c0568c0f59 (diff)
downloadglibc-68784f809ae820107eb556ee4da46ae55af26e3f.tar.gz
glibc-68784f809ae820107eb556ee4da46ae55af26e3f.tar.xz
glibc-68784f809ae820107eb556ee4da46ae55af26e3f.zip
Update.
	* sysdeps/i386/i486/bits/string.h (__strncat_g) [i686]: Fourth
	parameter of asm must be in %ecx.
Diffstat (limited to 'sysdeps/i386/i486/bits')
-rw-r--r--sysdeps/i386/i486/bits/string.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/i386/i486/bits/string.h b/sysdeps/i386/i486/bits/string.h
index 1a33630b29..bf4b471efd 100644
--- a/sysdeps/i386/i486/bits/string.h
+++ b/sysdeps/i386/i486/bits/string.h
@@ -1015,7 +1015,7 @@ __strncat_g (char *__dest, __const char __src[], size_t __n)
      "decl	%1\n"
      "2:\n\t"
      "movb	$0,(%1)"
-     : "=&a" (__dummy), "=&D" (__tmp), "=&S" (__src), "=&r" (__n)
+     : "=&a" (__dummy), "=&D" (__tmp), "=&S" (__src), "=&c" (__n)
      : "0" (0), "1" (__tmp), "2" (__src), "3" (__n)
      : "memory", "cc");
 #else