Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update.
	* sysdeps/i386/i486/bits/string.h (__strncat_g) [i686]: Fourth
	parameter of asm must be in %ecx.
  • Loading branch information
Ulrich Drepper committed Nov 26, 2000
1 parent c3560df commit 68784f8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions 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
Expand Down
2 changes: 1 addition & 1 deletion sysdeps/i386/i486/bits/string.h
Expand Up @@ -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
Expand Down

0 comments on commit 68784f8

Please sign in to comment.