Date: Mon, 23 Aug 2021 18:38:16 GMT From: Mateusz Guzik <mjg@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: a4c33d65f2f3 - main - mips: retire bzero Message-ID: <202108231838.17NIcGft006092@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by mjg: URL: https://cgit.FreeBSD.org/src/commit/?id=a4c33d65f2f3d0f16e5824b320e226b0c9ba31af commit a4c33d65f2f3d0f16e5824b320e226b0c9ba31af Author: Mateusz Guzik <mjg@FreeBSD.org> AuthorDate: 2021-08-23 16:26:02 +0000 Commit: Mateusz Guzik <mjg@FreeBSD.org> CommitDate: 2021-08-23 18:38:05 +0000 mips: retire bzero Unused since ba96f37758412151 ("Use __builtin for various mem* and b* (e.g. bzero) routines.") Sponsored by: Rubicon Communications, LLC ("Netgate") --- sys/mips/mips/support.S | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/sys/mips/mips/support.S b/sys/mips/mips/support.S index 4cf1f750fdad..9fd5b919d89e 100644 --- a/sys/mips/mips/support.S +++ b/sys/mips/mips/support.S @@ -440,10 +440,9 @@ memsetsmallclr: END(memset) /* - * bzero(s1, n) + * blkclr(s1, n) */ -LEAF(bzero) -XLEAF(blkclr) +LEAF(blkclr) .set noreorder blt a1, 12, smallclr # small amount to clear? PTR_SUBU a3, zero, a0 # compute # bytes to word align address @@ -471,7 +470,7 @@ smallclr: 2: j ra nop -END(bzero) +END(blkclr) /* * bit = ffs(value)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202108231838.17NIcGft006092>