mirror of
git://sourceware.org/git/glibc.git
synced 2025-01-30 12:31:53 +08:00
[AArch64] Fix CFA adjustment on dynamic linker entry.
This commit is contained in:
parent
87ded0c382
commit
b513cbf751
@ -1,3 +1,8 @@
|
||||
2014-01-07 Marcus Shawcroft <marcus.shawcroft@linaro.org>
|
||||
|
||||
* sysdeps/aarch64/dl-trampoline.S (_dl_runtime_resolve): Correct
|
||||
cfi_adjust_cfa_offset offset.
|
||||
|
||||
2014-01-06 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h (ptrace_peeksiginfo_args):
|
||||
|
@ -42,7 +42,7 @@ _dl_runtime_resolve:
|
||||
|
||||
/* Save arguments. */
|
||||
stp x8, x9, [sp, #-(80+8*16)]!
|
||||
cfi_adjust_cfa_offset (80)
|
||||
cfi_adjust_cfa_offset (80+8*16)
|
||||
cfi_rel_offset (x8, 0)
|
||||
cfi_rel_offset (x9, 8)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user