The branch main has been updated by mjg:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=38941f5993a161cd4ce21a0c0b2360d3ee73cf84

commit 38941f5993a161cd4ce21a0c0b2360d3ee73cf84
Author:     Mateusz Guzik <m...@freebsd.org>
AuthorDate: 2021-08-23 19:18:49 +0000
Commit:     Mateusz Guzik <m...@freebsd.org>
CommitDate: 2021-08-24 11:24:07 +0000

    i386: retire bcopy
    
    Unused since ba96f37758412151 ("Use __builtin for various mem* and b* (e.g. 
bzero)
    routines.")
    
    Sponsored by:   Rubicon Communications, LLC ("Netgate")
---
 sys/i386/i386/support.s | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/sys/i386/i386/support.s b/sys/i386/i386/support.s
index 4130affbba5c..c1ded3bb9357 100644
--- a/sys/i386/i386/support.s
+++ b/sys/i386/i386/support.s
@@ -127,17 +127,8 @@ END(fillw)
 
 /*
  * memmove(dst, src, cnt) (return dst)
- * bcopy(src, dst, cnt)
  *  w...@tools.de     (Wolfgang Solfrank, TooLs GmbH) +49-228-985800
  */
-ENTRY(bcopy)
-       movl    4(%esp),%eax
-       movl    8(%esp),%edx
-       movl    %eax,8(%esp)
-       movl    %edx,4(%esp)
-       jmp     memmove
-END(bcopy)
-
 ENTRY(memmove)
        pushl   %ebp
        movl    %esp,%ebp
_______________________________________________
dev-commits-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/dev-commits-src-all
To unsubscribe, send any mail to "dev-commits-src-all-unsubscr...@freebsd.org"

Reply via email to