]> sourceware.org Git - glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Thu, 28 Nov 2002 05:23:05 +0000 (05:23 +0000)
committerUlrich Drepper <drepper@redhat.com>
Thu, 28 Nov 2002 05:23:05 +0000 (05:23 +0000)
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.

ChangeLog
sysdeps/unix/sysv/linux/i386/sysdep.h

index 10fea1df8719aec4b5002957e7a59b41bc83cf42..74344ba2f1ec9e0738f85ee3ccc12c6f7e7e5e57 100644 (file)
--- 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
index 2057e5d4d2f0374fd0f6fcb0db077c803e8b7cf5..395121edbb5672932f8e5514fa1ef0240a47ff83 100644 (file)
@@ -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) \
This page took 0.049355 seconds and 5 git commands to generate.