summaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S
diff options
context:
space:
mode:
authorRoland McGrath <mcgrathr@chromium.org>2011-09-15 12:26:08 -0700
committerRoland McGrath <mcgrathr@chromium.org>2011-09-15 12:26:08 -0700
commitb402e91af4a1771cdc11bb7d88bbc631aeeddb82 (patch)
tree8169edde0d1096f9889aaff043051b87507526e0 /sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S
parent4d8e1f11950c7ceb6b5037c66ee104d031487d72 (diff)
Use HIDDEN_JUMPTARGET rather than spelling out its effects, for ____longjmp_chk implementations.
Diffstat (limited to 'sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S')
-rw-r--r--sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S b/sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S
index 3881082cff..d8cbe06841 100644
--- a/sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S
+++ b/sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S
@@ -34,7 +34,7 @@ longjmp_msg:
cfi_remember_state; \
cfi_def_cfa_offset(16); \
leaq longjmp_msg(%rip), %rdi; \
- call __GI___fortify_fail; \
+ call HIDDEN_JUMPTARGET(__fortify_fail); \
nop; \
cfi_restore_state
#else
@@ -42,7 +42,7 @@ longjmp_msg:
cfi_remember_state; \
cfi_def_cfa_offset(16); \
movq $longjmp_msg, %rdi; \
- call __fortify_fail; \
+ call HIDDEN_JUMPTARGET(__fortify_fail); \
nop; \
cfi_restore_state
#endif