From: Adhemerval Zanella Date: Thu, 10 Feb 2022 13:44:23 +0000 (-0300) Subject: ia64: Remove bcopy X-Git-Tag: glibc-2.36~665 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=80b85f92f488b5ac8ea611049ecb65c0cc10286e;p=thirdparty%2Fglibc.git ia64: Remove bcopy It just call memmove as the generic implementation. --- diff --git a/sysdeps/ia64/bcopy.S b/sysdeps/ia64/bcopy.S deleted file mode 100644 index bdabf5acdc7..00000000000 --- a/sysdeps/ia64/bcopy.S +++ /dev/null @@ -1,10 +0,0 @@ -#include - -ENTRY(bcopy) - .regstk 3, 0, 0, 0 - mov r8 = in0 - mov in0 = in1 - ;; - mov in1 = r8 - br.cond.sptk.many HIDDEN_BUILTIN_JUMPTARGET(memmove) -END(bcopy)