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