Browse Source

Fix off-by-1 error in argument access.

cvs/fedora-2_3-branch
Andreas Jaeger 24 years ago
parent
commit
f977f8e520
  1. 2
      sysdeps/x86_64/_mcount.S

2
sysdeps/x86_64/_mcount.S

@ -41,7 +41,7 @@ C_LABEL(_mcount)
/* Setup parameter for __mcount_internal. */
/* selfpc is the return address on the stack. */
movq 48(%rsp),%rsi
movq 56(%rsp),%rsi
/* Get frompc via the frame pointer. */
movq 8(%rbp),%rdi
#ifdef PIC

Loading…
Cancel
Save