1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-01 10:06:57 +03:00
2003-06-06  Ulrich Drepper  <drepper@redhat.com>

	* 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.
This commit is contained in:
Ulrich Drepper
2003-06-06 09:02:20 +00:00
parent 7a8a8e21cd
commit 3a370de88f
2 changed files with 7 additions and 1 deletions

View File

@ -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) \