summaryrefslogtreecommitdiff
path: root/lib/libc/arch/mips/string
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/arch/mips/string')
-rw-r--r--lib/libc/arch/mips/string/bcopy.S4
-rw-r--r--lib/libc/arch/mips/string/bzero.S4
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/arch/mips/string/bcopy.S b/lib/libc/arch/mips/string/bcopy.S
index acf6a16c454..c899bc12100 100644
--- a/lib/libc/arch/mips/string/bcopy.S
+++ b/lib/libc/arch/mips/string/bcopy.S
@@ -38,7 +38,7 @@
#if defined(LIBC_SCCS)
.text
- .asciz "$OpenBSD: bcopy.S,v 1.4 1996/08/19 08:16:12 tholo Exp $"
+ .asciz "$OpenBSD: bcopy.S,v 1.5 2001/01/04 21:45:29 todd Exp $"
#endif /* LIBC_SCCS */
/* bcopy(s1, s2, n) */
@@ -57,7 +57,7 @@ LEAF(bcopy)
addu t1, a1, a2 # t1 = end of to region
1:
lb v0, -1(t0) # copy bytes backwards,
- subu t0, t0, 1 # doesnt happen often so do slow way
+ subu t0, t0, 1 # doesn't happen often so do slow way
subu t1, t1, 1
bne t0, a0, 1b
sb v0, 0(t1)
diff --git a/lib/libc/arch/mips/string/bzero.S b/lib/libc/arch/mips/string/bzero.S
index b27ec3358b8..5a48b003d75 100644
--- a/lib/libc/arch/mips/string/bzero.S
+++ b/lib/libc/arch/mips/string/bzero.S
@@ -38,7 +38,7 @@
#if defined(LIBC_SCCS)
.text
- .asciz "$OpenBSD: bzero.S,v 1.4 1996/08/19 08:16:13 tholo Exp $"
+ .asciz "$OpenBSD: bzero.S,v 1.5 2001/01/04 21:45:30 todd Exp $"
#endif /* LIBC_SCCS */
/* bzero(s1, n) */
@@ -59,7 +59,7 @@ LEAF(bzero)
addu a3, a3, a0 # compute ending address
2:
addu a0, a0, 4 # clear words
- bne a0, a3, 2b # unrolling loop doesnt help
+ bne a0, a3, 2b # unrolling loop doesn't help
sw zero, -4(a0) # since we are limited by memory speed
smallclr:
ble a1, zero, 2f