diff options
Diffstat (limited to 'sysdeps/unix/i386/sysdep.h')
-rw-r--r-- | sysdeps/unix/i386/sysdep.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sysdeps/unix/i386/sysdep.h b/sysdeps/unix/i386/sysdep.h index 08bc0ba51c..97fb1dc4a2 100644 --- a/sysdeps/unix/i386/sysdep.h +++ b/sysdeps/unix/i386/sysdep.h @@ -26,9 +26,7 @@ #define DO_CALL(syscall_name, args) \ lea SYS_ify (syscall_name), %eax; \ - /* lcall $7, $0; */ \ - /* Above loses; GAS bug. */ \ - .byte 0x9a, 0, 0, 0, 0, 7, 0 + lcall $7, $0 #define r0 %eax /* Normal return-value register. */ #define r1 %edx /* Secondary return-value register. */ |