Use JUMPTARGET(syscall_error) in jump insn.

This commit is contained in:
Roland McGrath 1995-07-22 10:29:55 +00:00
parent 48daea4ca6
commit 80e6394278

View File

@ -25,5 +25,5 @@ ENTRY (syscall)
pushl %ecx /* Push back return address. */
DO_CALL (5) /* Frob the args and do the system call. */
testl %eax, %eax /* Check %eax for error. */
jl syscall_error /* Jump to error handler if negative. */
jl JUMPTARGET(syscall_error) /* Jump to error handler if negative. */
ret /* Return to caller. */