From: Roland McGrath Date: Sat, 22 Jul 1995 10:29:55 +0000 (+0000) Subject: Use JUMPTARGET(syscall_error) in jump insn. X-Git-Tag: upstream/2.30~10627^2~3917 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=80e6394278eed0a5f46e118142ba2546301ac962;p=external%2Fglibc.git Use JUMPTARGET(syscall_error) in jump insn. --- diff --git a/sysdeps/unix/sysv/sysv4/linux/i386/syscall.S b/sysdeps/unix/sysv/sysv4/linux/i386/syscall.S index 74e1047..efe6d36 100644 --- a/sysdeps/unix/sysv/sysv4/linux/i386/syscall.S +++ b/sysdeps/unix/sysv/sysv4/linux/i386/syscall.S @@ -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. */