mips: retire bzero

Unused since ba96f37758 ("Use __builtin for various mem* and b* (e.g. bzero)
routines.")

Sponsored by:	Rubicon Communications, LLC ("Netgate")
This commit is contained in:
Mateusz Guzik 2021-08-23 16:26:02 +00:00
parent 11cb9a096c
commit a4c33d65f2

View file

@ -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)