diff options
author | Per Fogelstrom <pefo@cvs.openbsd.org> | 2004-08-15 13:53:44 +0000 |
---|---|---|
committer | Per Fogelstrom <pefo@cvs.openbsd.org> | 2004-08-15 13:53:44 +0000 |
commit | 31e861a8209c556f0108b2ee0e52a8733574af26 (patch) | |
tree | b7df4c44bf9ffb22e456ca384ea631f8dc4999c8 /lib/libc | |
parent | 54a66bc92a3511250db1695cfda941202e2e805a (diff) |
remove single '
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/arch/mips64/string/bzero.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/arch/mips64/string/bzero.S b/lib/libc/arch/mips64/string/bzero.S index ab43507f19c..af6ce87e6bb 100644 --- a/lib/libc/arch/mips64/string/bzero.S +++ b/lib/libc/arch/mips64/string/bzero.S @@ -34,7 +34,7 @@ #if defined(LIBC_SCCS) .text - .asciz "$OpenBSD: bzero.S,v 1.1 2004/08/11 17:30:59 pefo Exp $" + .asciz "$OpenBSD: bzero.S,v 1.2 2004/08/15 13:53:43 pefo Exp $" #endif /* LIBC_SCCS */ /* bzero(s1, n) */ @@ -55,7 +55,7 @@ LEAF(bzero) addu a3, a3, a0 # compute ending address 2: addu a0, a0, 4 # clear words - bne a0, a3, 2b # unrolling loop doesn't help + bne a0, a3, 2b # unrolling loop does not help sw zero, -4(a0) # since we are limited by memory speed smallclr: ble a1, zero, 2f |