summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/i386/syscall.S
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-08-11 22:36:11 +0000
committerMike Frysinger <vapier@gentoo.org>2005-08-11 22:36:11 +0000
commit71f8450fce910b1e3aa8bb17c61b10ce4a08b52f (patch)
tree2f384de76205a13bcaa0631644e429f44ff24ae0 /libc/sysdeps/linux/i386/syscall.S
parent4fd42eddbbb74107c6af4ff4270bfe3b8d6c56fe (diff)
jump straight to __syscall_error
Diffstat (limited to 'libc/sysdeps/linux/i386/syscall.S')
-rw-r--r--libc/sysdeps/linux/i386/syscall.S5
1 files changed, 1 insertions, 4 deletions
diff --git a/libc/sysdeps/linux/i386/syscall.S b/libc/sysdeps/linux/i386/syscall.S
index 44eb00f49..19adf97a8 100644
--- a/libc/sysdeps/linux/i386/syscall.S
+++ b/libc/sysdeps/linux/i386/syscall.S
@@ -45,10 +45,7 @@ syscall:
popl %ebp
cmpl $-4095,%eax
- jae __error
+ jae __syscall_error
ret /* Return to caller. */
-__error:
- jmp __syscall_error
-
.size syscall,.-syscall