mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-13 00:30:07 +00:00
Add missing .text directives.
The ____longjmp_chk functions on x86 and x86-64 were placed in .rodata.str1.1.
This commit is contained in:
parent
3533b1a6a6
commit
e7535de78f
@ -1,3 +1,8 @@
|
||||
2009-05-21 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* sysdeps/i386/__longjmp.S: Add .text.
|
||||
* sysdeps/x86_64/__longjmp.S: Likewise.
|
||||
|
||||
2009-05-21 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* sysdeps/unix/sysv/linux/kernel-features.h: Don't define
|
||||
|
@ -28,6 +28,7 @@
|
||||
#define JBUF PARMS
|
||||
#define VAL JBUF+PTR_SIZE
|
||||
|
||||
.text
|
||||
ENTRY (BP_SYM (__longjmp))
|
||||
ENTER
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* Copyright (C) 2001,2004,2005,2006 Free Software Foundation, Inc.
|
||||
/* Copyright (C) 2001,2004,2005,2006,2009 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
@ -23,6 +23,7 @@
|
||||
/* Jump to the position specified by ENV, causing the
|
||||
setjmp call there to return VAL, or 1 if VAL is 0.
|
||||
void __longjmp (__jmp_buf env, int val). */
|
||||
.text
|
||||
ENTRY(__longjmp)
|
||||
/* Restore registers. */
|
||||
movq (JB_RSP*8)(%rdi),%r8
|
||||
|
Loading…
Reference in New Issue
Block a user