aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2002-11-28 05:23:05 +0000
committerUlrich Drepper <drepper@redhat.com>2002-11-28 05:23:05 +0000
commitd08bef807b655576c07e5dffe8365d0713b218c4 (patch)
tree5dc5f5450ebca5816978ec4b1d3d2a6e56f5ddfb
parentc10c099c5745089b8d1e912da794d77e76cb2de2 (diff)
downloadglibc-d08bef807b655576c07e5dffe8365d0713b218c4.tar
glibc-d08bef807b655576c07e5dffe8365d0713b218c4.tar.gz
glibc-d08bef807b655576c07e5dffe8365d0713b218c4.tar.bz2
glibc-d08bef807b655576c07e5dffe8365d0713b218c4.zip
Update.
2002-11-27 Ulrich Drepper <drepper@redhat.com> * sysdeps/unix/sysv/linux/i386/sysdep.h (ASMFMT_2): Fix typo in first parameters constraint string. (ASMFMT_3): Likewise. Patch by stefan.lauterbach@mincom.de.
-rw-r--r--ChangeLog6
-rw-r--r--sysdeps/unix/sysv/linux/i386/sysdep.h4
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 10fea1df87..74344ba2f1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2002-11-27 Ulrich Drepper <drepper@redhat.com>
+
+ * sysdeps/unix/sysv/linux/i386/sysdep.h (ASMFMT_2): Fix typo in
+ first parameters constraint string.
+ (ASMFMT_3): Likewise. Patch by stefan.lauterbach@mincom.de.
+
2002-11-27 Isamu Hasegawa <isamu@yamato.ibm.com>
* posix/regcomp.c (parse_expression): Set the bit since the back
diff --git a/sysdeps/unix/sysv/linux/i386/sysdep.h b/sysdeps/unix/sysv/linux/i386/sysdep.h
index 2057e5d4d2..395121edbb 100644
--- a/sysdeps/unix/sysv/linux/i386/sysdep.h
+++ b/sysdeps/unix/sysv/linux/i386/sysdep.h
@@ -347,9 +347,9 @@ asm (".L__X'%ebx = 1\n\t"
#define ASMFMT_1(arg1) \
, "acdSD" (arg1)
#define ASMFMT_2(arg1, arg2) \
- , "adCD" (arg1), "c" (arg2)
+ , "adSD" (arg1), "c" (arg2)
#define ASMFMT_3(arg1, arg2, arg3) \
- , "aCD" (arg1), "c" (arg2), "d" (arg3)
+ , "aSD" (arg1), "c" (arg2), "d" (arg3)
#define ASMFMT_4(arg1, arg2, arg3, arg4) \
, "aD" (arg1), "c" (arg2), "d" (arg3), "S" (arg4)
#define ASMFMT_5(arg1, arg2, arg3, arg4, arg5) \