From 71f8450fce910b1e3aa8bb17c61b10ce4a08b52f Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Thu, 11 Aug 2005 22:36:11 +0000 Subject: jump straight to __syscall_error --- libc/sysdeps/linux/i386/mmap64.S | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'libc/sysdeps/linux/i386/mmap64.S') diff --git a/libc/sysdeps/linux/i386/mmap64.S b/libc/sysdeps/linux/i386/mmap64.S index 34cee1640..5c89c983b 100644 --- a/libc/sysdeps/linux/i386/mmap64.S +++ b/libc/sysdeps/linux/i386/mmap64.S @@ -76,7 +76,7 @@ mmap64: /* If 0 > %eax > -4096 there was an error. */ cmpl $-4095,%eax - ja __error + ja __syscall_error /* Successful; return the syscall's value. */ ret @@ -89,9 +89,6 @@ L_einval: movl $-EINVAL, %eax jmp __error -__error: - jmp __syscall_error - .size mmap64,.-mmap64 #endif -- cgit v1.2.3