diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2022-02-10 11:23:24 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2022-02-23 14:06:49 -0300 |
commit | bf92893a14ebc161b08b28acc24fa06ae6be19cb (patch) | |
tree | 36e2ee929e1e37eb11430ba2cd4d416113ecde23 /sysdeps/x86_64/multiarch | |
parent | 8bad328203ee79fbc2e895e2a3f17f6a221d0814 (diff) | |
download | glibc-bf92893a14ebc161b08b28acc24fa06ae6be19cb.tar.gz glibc-bf92893a14ebc161b08b28acc24fa06ae6be19cb.tar.xz glibc-bf92893a14ebc161b08b28acc24fa06ae6be19cb.zip |
x86_64: Remove bcopy optimizations
The symbols is not present in current POSIX specification and compiler already generates memmove call.
Diffstat (limited to 'sysdeps/x86_64/multiarch')
-rw-r--r-- | sysdeps/x86_64/multiarch/bcopy.S | 7 |
1 files changed, 0 insertions, 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 <sysdep.h> - - .text -ENTRY(bcopy) - xchg %rdi, %rsi - jmp __libc_memmove /* Branch to IFUNC memmove. */ -END(bcopy) |