From: Ulrich Drepper Date: Fri, 6 Jun 2003 09:02:20 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/glibc-2_3_3~635 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3a370de88f9ca928a90d1fa88afaf5d17d939fb6;p=platform%2Fupstream%2Fglibc.git Update. 2003-06-06 Ulrich Drepper * sysdeps/unix/sysv/linux/i386/sysdep.h (ASMFMT_2): Only allow %edx for first parameter. This means no pushl and therefore the unwind info isn't screwed up. --- diff --git a/ChangeLog b/ChangeLog index 4cc5d6f..342a2a1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2003-06-06 Ulrich Drepper + + * sysdeps/unix/sysv/linux/i386/sysdep.h (ASMFMT_2): Only allow + %edx for first parameter. This means no pushl and therefore the + unwind info isn't screwed up. + 2003-06-04 Richard Henderson * sysdeps/alpha/dl-machine.h (RTLD_START): Fix top-of-stack backtrace. diff --git a/sysdeps/unix/sysv/linux/i386/sysdep.h b/sysdeps/unix/sysv/linux/i386/sysdep.h index 858a56a..f8f4a55 100644 --- a/sysdeps/unix/sysv/linux/i386/sysdep.h +++ b/sysdeps/unix/sysv/linux/i386/sysdep.h @@ -421,7 +421,7 @@ asm (".L__X'%ebx = 1\n\t" #define ASMFMT_1(arg1) \ , "acdSD" (arg1) #define ASMFMT_2(arg1, arg2) \ - , "adSD" (arg1), "c" (arg2) + , "d" (arg1), "c" (arg2) #define ASMFMT_3(arg1, arg2, arg3) \ , "aSD" (arg1), "c" (arg2), "d" (arg3) #define ASMFMT_4(arg1, arg2, arg3, arg4) \