From 80e6394278eed0a5f46e118142ba2546301ac962 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Sat, 22 Jul 1995 10:29:55 +0000 Subject: [PATCH] Use JUMPTARGET(syscall_error) in jump insn. --- sysdeps/unix/sysv/sysv4/linux/i386/syscall.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. */ -- 2.7.4