Use JUMPTARGET macro in jmp insn.
This commit is contained in:
parent
9c9022dd4f
commit
680469021c
@ -29,4 +29,5 @@ ENTRY (_setjmp)
|
||||
pushl $0 /* Push second argument of zero. */
|
||||
pushl %ecx /* Push back first argument. */
|
||||
pushl %eax /* Push back return PC. */
|
||||
jmp C_SYMBOL_NAME (__sigsetjmp)
|
||||
jmp JUMPTARGET (C_SYMBOL_NAME (__sigsetjmp))
|
||||
|
||||
|
@ -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))
|
||||
|
Loading…
x
Reference in New Issue
Block a user