diff options
author | Roland McGrath <roland@gnu.org> | 1995-07-23 00:53:42 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-07-23 00:53:42 +0000 |
commit | 680469021c02fbc12faa3909571e064c9789d525 (patch) | |
tree | f77147a82277fbc2f1f0e2a10a8cdba95d1b6c25 /sysdeps/i386/bsd-setjmp.S | |
parent | 9c9022dd4fdce5d4e13600c1a9a1cca0768c3285 (diff) | |
download | glibc-680469021c02fbc12faa3909571e064c9789d525.tar glibc-680469021c02fbc12faa3909571e064c9789d525.tar.gz glibc-680469021c02fbc12faa3909571e064c9789d525.tar.bz2 glibc-680469021c02fbc12faa3909571e064c9789d525.zip |
Use JUMPTARGET macro in jmp insn.
Diffstat (limited to 'sysdeps/i386/bsd-setjmp.S')
-rw-r--r-- | sysdeps/i386/bsd-setjmp.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/i386/bsd-setjmp.S b/sysdeps/i386/bsd-setjmp.S index 238f0307ad..d9a39b9191 100644 --- a/sysdeps/i386/bsd-setjmp.S +++ b/sysdeps/i386/bsd-setjmp.S @@ -1,5 +1,5 @@ /* BSD `setjmp' entry point to `sigsetjmp (..., 1)'. i386 version. -Copyright (C) 1994 Free Software Foundation, Inc. +Copyright (C) 1994, 1995 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 @@ -29,4 +29,4 @@ ENTRY (setjmp) pushl $1 /* Push second argument of one. */ pushl %ecx /* Push back first argument. */ pushl %eax /* Push back return PC. */ - jmp C_SYMBOL_NAME (__sigsetjmp) + jmp JUMPTARGET (C_SYMBOL_NAME (__sigsetjmp)) |