From: Adhemerval Zanella Date: Thu, 10 Feb 2022 14:23:24 +0000 (-0300) Subject: x86_64: Remove bcopy optimizations X-Git-Tag: glibc-2.36~662 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bf92893a14ebc161b08b28acc24fa06ae6be19cb;p=thirdparty%2Fglibc.git x86_64: Remove bcopy optimizations The symbols is not present in current POSIX specification and compiler already generates memmove call. --- diff --git a/sysdeps/x86_64/multiarch/bcopy.S b/sysdeps/x86_64/multiarch/bcopy.S deleted file mode 100644 index 639f02bde3a..00000000000 --- 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)