Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/lib/libc/arch/mips/string Fix typo.
details: https://anonhg.NetBSD.org/src/rev/ffabb0dede76
branches: trunk
changeset: 750006:ffabb0dede76
user: matt <matt%NetBSD.org@localhost>
date: Mon Dec 14 02:53:52 2009 +0000
description:
Fix typo.
diffstat:
lib/libc/arch/mips/string/bzero.S | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r d9a49e911904 -r ffabb0dede76 lib/libc/arch/mips/string/bzero.S
--- a/lib/libc/arch/mips/string/bzero.S Mon Dec 14 02:52:08 2009 +0000
+++ b/lib/libc/arch/mips/string/bzero.S Mon Dec 14 02:53:52 2009 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: bzero.S,v 1.9 2009/12/14 01:07:42 matt Exp $ */
+/* $NetBSD: bzero.S,v 1.10 2009/12/14 02:53:52 matt Exp $ */
/*-
* Copyright (c) 1991, 1993
@@ -38,7 +38,7 @@
#if 0
RCSID("from: @(#)bzero.s 8.1 (Berkeley) 6/4/93")
#else
- RCSID("$NetBSD: bzero.S,v 1.9 2009/12/14 01:07:42 matt Exp $")
+ RCSID("$NetBSD: bzero.S,v 1.10 2009/12/14 02:53:52 matt Exp $")
#endif
#endif /* LIBC_SCCS and not lint */
@@ -71,7 +71,7 @@
REG_SLLV a2, a2, a3 # we want to keep the LSB bytes
#endif
nor a2, zero, a2 # complement the mask
- REL_L v0, -SZREG(a0) # load the word to partially clear
+ REG_L v0, -SZREG(a0) # load the word to partially clear
and v0, v0, a2 # clear the bytes
REG_S v0, -SZREG(a0) # store it back
#endif
Home |
Main Index |
Thread Index |
Old Index