From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 7852) id D0786385E007; Mon, 16 May 2022 20:18:45 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org D0786385E007 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Sunil Pandey To: glibc-cvs@sourceware.org Subject: [glibc/release/2.35/master] x86_64: Remove bcopy optimizations X-Act-Checkin: glibc X-Git-Author: Adhemerval Zanella X-Git-Refname: refs/heads/release/2.35/master X-Git-Oldrev: f0a53588da7d6b642eeabdbd934d799ed0df2b8f X-Git-Newrev: 0a10b8b181d0ad84c5f8a7c42f4932528b2964bc Message-Id: <20220516201845.D0786385E007@sourceware.org> Date: Mon, 16 May 2022 20:18:45 +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: Mon, 16 May 2022 20:18:45 -0000 https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=0a10b8b181d0ad84c5f8a7c42f4932528b2964bc commit 0a10b8b181d0ad84c5f8a7c42f4932528b2964bc Author: Adhemerval Zanella Date: Thu Feb 10 11:23:24 2022 -0300 x86_64: Remove bcopy optimizations The symbols is not present in current POSIX specification and compiler already generates memmove call. (cherry picked from commit bf92893a14ebc161b08b28acc24fa06ae6be19cb) Diff: --- sysdeps/x86_64/multiarch/bcopy.S | 7 ------- 1 file changed, 7 deletions(-) diff --git a/sysdeps/x86_64/multiarch/bcopy.S b/sysdeps/x86_64/multiarch/bcopy.S deleted file mode 100644 index 639f02bde3..0000000000 --- a/sysdeps/x86_64/multiarch/bcopy.S +++ /dev/null @@ -1,7 +0,0 @@ -#include - - .text -ENTRY(bcopy) - xchg %rdi, %rsi - jmp __libc_memmove /* Branch to IFUNC memmove. */ -END(bcopy)