]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
x86_64: Remove bcopy optimizations
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>
Thu, 10 Feb 2022 14:23:24 +0000 (11:23 -0300)
committerSunil K Pandey <skpgkp2@gmail.com>
Tue, 17 May 2022 03:43:01 +0000 (20:43 -0700)
The symbols is not present in current POSIX specification and compiler
already generates memmove call.

(cherry picked from commit bf92893a14ebc161b08b28acc24fa06ae6be19cb)

sysdeps/x86_64/multiarch/bcopy.S [deleted file]

diff --git a/sysdeps/x86_64/multiarch/bcopy.S b/sysdeps/x86_64/multiarch/bcopy.S
deleted file mode 100644 (file)
index 639f02b..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-#include <sysdep.h>
-
-       .text
-ENTRY(bcopy)
-       xchg    %rdi, %rsi
-       jmp     __libc_memmove  /* Branch to IFUNC memmove.  */
-END(bcopy)