08c3a6
commit dd457606ca4583b4a5e83d4e8956e6f9db61df6d
08c3a6
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
08c3a6
Date:   Thu Feb 10 11:23:24 2022 -0300
08c3a6
08c3a6
    x86_64: Remove bcopy optimizations
08c3a6
    
08c3a6
    The symbols is not present in current POSIX specification and compiler
08c3a6
    already generates memmove call.
08c3a6
    
08c3a6
    (cherry picked from commit bf92893a14ebc161b08b28acc24fa06ae6be19cb)
08c3a6
08c3a6
diff --git a/sysdeps/x86_64/multiarch/bcopy.S b/sysdeps/x86_64/multiarch/bcopy.S
08c3a6
deleted file mode 100644
08c3a6
index 639f02bde3ac3ed1..0000000000000000
08c3a6
--- a/sysdeps/x86_64/multiarch/bcopy.S
08c3a6
+++ /dev/null
08c3a6
@@ -1,7 +0,0 @@
08c3a6
-#include <sysdep.h>
08c3a6
-
08c3a6
-	.text
08c3a6
-ENTRY(bcopy)
08c3a6
-	xchg	%rdi, %rsi
08c3a6
-	jmp	__libc_memmove	/* Branch to IFUNC memmove.  */
08c3a6
-END(bcopy)