Skip to content

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Ulrich Drepper committed Jun 6, 2003
1 parent 7a8a8e2 commit 3a370de
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
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.

2003-06-04 Richard Henderson <rth@redhat.com>

* sysdeps/alpha/dl-machine.h (RTLD_START): Fix top-of-stack backtrace.
Expand Down
2 changes: 1 addition & 1 deletion sysdeps/unix/sysv/linux/i386/sysdep.h
Original file line number Diff line number Diff line change
Expand Up @@ -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) \
Expand Down

0 comments on commit 3a370de

Please sign in to comment.