From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2178) id C3DBF3856DF0; Thu, 19 May 2022 13:05:07 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C3DBF3856DF0 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Florian Weimer To: glibc-cvs@sourceware.org Subject: [glibc/release/2.34/master] i386: Remove OPTIMIZE_FOR_GCC_5 from Linux libc-do-syscall.S X-Act-Checkin: glibc X-Git-Author: Florian Weimer X-Git-Refname: refs/heads/release/2.34/master X-Git-Oldrev: be9240c84c67de44959905a829141576965a0588 X-Git-Newrev: 1e7b011f87c653ad109b34e675f64e7a5cc3805a Message-Id: <20220519130507.C3DBF3856DF0@sourceware.org> Date: Thu, 19 May 2022 13:05:07 +0000 (GMT) X-BeenThere: glibc-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Glibc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 May 2022 13:05:07 -0000 https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=1e7b011f87c653ad109b34e675f64e7a5cc3805a commit 1e7b011f87c653ad109b34e675f64e7a5cc3805a Author: Florian Weimer Date: Wed May 4 15:37:21 2022 +0200 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 (cherry picked from commit 6e5c7a1e262961adb52443ab91bd2c9b72316402) Diff: --- sysdeps/unix/sysv/linux/i386/libc-do-syscall.S | 3 --- 1 file changed, 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 c95f297d6f..404435f012 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 -#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