git: 38941f5993a1 - main - i386: retire bcopy

Mateusz Guzik mjg at FreeBSD.org
Tue Aug 24 11:24:12 UTC 2021


The branch main has been updated by mjg:

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

commit 38941f5993a161cd4ce21a0c0b2360d3ee73cf84
Author:     Mateusz Guzik <mjg at FreeBSD.org>
AuthorDate: 2021-08-23 19:18:49 +0000
Commit:     Mateusz Guzik <mjg at 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)
  *  ws at 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


More information about the dev-commits-src-all mailing list