]> sourceware.org Git - glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Sun, 26 Nov 2000 05:46:35 +0000 (05:46 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sun, 26 Nov 2000 05:46:35 +0000 (05:46 +0000)
* sysdeps/i386/i486/bits/string.h (__strncat_g) [i686]: Fourth
parameter of asm must be in %ecx.

ChangeLog
sysdeps/i386/i486/bits/string.h

index dbbb2ffcd7800079a95b20c571739a69a5962edf..4561f473a7ae0268659e54ec9afa873fc5857c62 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2000-11-25  Ulrich Drepper  <drepper@redhat.com>
 
+       * sysdeps/i386/i486/bits/string.h (__strncat_g) [i686]: Fourth
+       parameter of asm must be in %ecx.
+
        * string/tester.c: Mark test functions as static to avoid warnings.
 
        * iconv/gconv_conf.c (read_conf_file): Make mod_counter static to
index 1a33630b292aebc9fd83c8d245c3347873c1fff8..bf4b471efdae4ba30a2259bd9992a70ab5ed2bde 100644 (file)
@@ -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
This page took 0.048154 seconds and 5 git commands to generate.