From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2206) id 180713858407; Tue, 1 Mar 2022 02:38:30 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 180713858407 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Siddhesh Poyarekar To: glibc-cvs@sourceware.org Subject: [glibc/siddhesh/gai-cleanup2] x86_64: Remove bcopy optimizations X-Act-Checkin: glibc X-Git-Author: Adhemerval Zanella X-Git-Refname: refs/heads/siddhesh/gai-cleanup2 X-Git-Oldrev: 8bad328203ee79fbc2e895e2a3f17f6a221d0814 X-Git-Newrev: bf92893a14ebc161b08b28acc24fa06ae6be19cb Message-Id: <20220301023830.180713858407@sourceware.org> Date: Tue, 1 Mar 2022 02:38:30 +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: Tue, 01 Mar 2022 02:38:30 -0000 https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=bf92893a14ebc161b08b28acc24fa06ae6be19cb commit bf92893a14ebc161b08b28acc24fa06ae6be19cb 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. 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)