about summary refs log tree commit diff
path: root/sysdeps/unix/i386
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1995-07-23 00:58:43 +0000
committerRoland McGrath <roland@gnu.org>1995-07-23 00:58:43 +0000
commitd7e16e9e8348b8bcdb805f0c25baf80b057f2b59 (patch)
tree617f06b300cea1d906b98f7b2f58b17585ca4172 /sysdeps/unix/i386
parent680469021c02fbc12faa3909571e064c9789d525 (diff)
downloadglibc-d7e16e9e8348b8bcdb805f0c25baf80b057f2b59.tar.gz
glibc-d7e16e9e8348b8bcdb805f0c25baf80b057f2b59.tar.xz
glibc-d7e16e9e8348b8bcdb805f0c25baf80b057f2b59.zip
Sat Jul 22 20:53:18 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu> cvs/libc-950723 cvs/libc-950722
	* sysdeps/unix/i386/sysdep.h (JUMPTARGET): Use ## to avoid space
 	before @PLT.
	* sysdeps/mach/i386/sysdep.h (JUMPTARGET): New macro.
	* sysdeps/i386/bsd-_setjmp.S: Use JUMPTARGET macro in jmp insn.
	* sysdeps/i386/bsd-setjmp.S: Likewise.
Diffstat (limited to 'sysdeps/unix/i386')
-rw-r--r--sysdeps/unix/i386/sysdep.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/i386/sysdep.h b/sysdeps/unix/i386/sysdep.h
index 4e4b6e6ab5..46f2886c4a 100644
--- a/sysdeps/unix/i386/sysdep.h
+++ b/sysdeps/unix/i386/sysdep.h
@@ -48,7 +48,7 @@ Cambridge, MA 02139, USA.  */
   jb JUMPTARGET(syscall_error)
 
 #ifdef PIC
-#define JUMPTARGET(name) name@PLT
+#define JUMPTARGET(name) name##@PLT
 #else
 #define JUMPTARGET(name) name
 #endif