about summary refs log tree commit diff
path: root/sysdeps/unix/sysv
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2022-05-04 15:37:21 +0200
committerFlorian Weimer <fweimer@redhat.com>2022-05-04 15:37:21 +0200
commit6e5c7a1e262961adb52443ab91bd2c9b72316402 (patch)
treeaabb562f5ba1d4b14390a1ad3feddd41ea2fff76 /sysdeps/unix/sysv
parentdb1efe02c9f15affc3908d6ae73875b82898a489 (diff)
downloadglibc-6e5c7a1e262961adb52443ab91bd2c9b72316402.tar.gz
glibc-6e5c7a1e262961adb52443ab91bd2c9b72316402.tar.xz
glibc-6e5c7a1e262961adb52443ab91bd2c9b72316402.zip
i386: Remove OPTIMIZE_FOR_GCC_5 from Linux libc-do-syscall.S
After commit a78e6a10d0b50d0ca80309775980fc99944b1727
("i386: Remove broken CAN_USE_REGISTER_ASM_EBP (bug 28771)"),
it is never defined.

Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
Diffstat (limited to 'sysdeps/unix/sysv')
-rw-r--r--sysdeps/unix/sysv/linux/i386/libc-do-syscall.S3
1 files changed, 0 insertions, 3 deletions
diff --git a/sysdeps/unix/sysv/linux/i386/libc-do-syscall.S b/sysdeps/unix/sysv/linux/i386/libc-do-syscall.S
index 04154f43e0..3eea5f3a5d 100644
--- a/sysdeps/unix/sysv/linux/i386/libc-do-syscall.S
+++ b/sysdeps/unix/sysv/linux/i386/libc-do-syscall.S
@@ -18,8 +18,6 @@
 
 #include <sysdep.h>
 
-#ifndef OPTIMIZE_FOR_GCC_5
-
 /* %eax, %ecx, %edx and %esi contain the values expected by the kernel.
    %edi points to a structure with the values of %ebx, %edi and %ebp.  */
 
@@ -50,4 +48,3 @@ ENTRY (__libc_do_syscall)
 	cfi_restore (ebx)
 	ret
 END (__libc_do_syscall)
-#endif