Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/common/lib/libc/arch/arm/string Fix two typos
details: https://anonhg.NetBSD.org/src/rev/92dda96efa39
branches: trunk
changeset: 784006:92dda96efa39
user: matt <matt%NetBSD.org@localhost>
date: Mon Jan 14 19:15:13 2013 +0000
description:
Fix two typos
diffstat:
common/lib/libc/arch/arm/string/memset_arm.S | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 046d1a02a9a4 -r 92dda96efa39 common/lib/libc/arch/arm/string/memset_arm.S
--- a/common/lib/libc/arch/arm/string/memset_arm.S Mon Jan 14 18:24:14 2013 +0000
+++ b/common/lib/libc/arch/arm/string/memset_arm.S Mon Jan 14 19:15:13 2013 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: memset_arm.S,v 1.1 2013/01/12 20:27:13 matt Exp $ */
+/* $NetBSD: memset_arm.S,v 1.2 2013/01/14 19:15:13 matt Exp $ */
/*-
* Copyright (c) 2012 The NetBSD Foundation, Inc.
@@ -110,7 +110,7 @@
* copy so we don't have to worry about the length at the moment.
*/
rsb r2, r2, #64 /* how many bytes until 64 bytes */
- sub r1, r1, r2 ?* subtract from remaining length */
+ sub r1, r1, r2 /* subtract from remaining length */
#if !defined(NEON) && !defined(VFP)
mov r2, r3 /* put fill back in r2 */
#endif
@@ -123,7 +123,7 @@
STORE16 /* no, store a quadword */
2: tst ip, #32 /* 32 word aligned? */
beq .Lmemset_mainloop /* yes */
- STORE32 /* no, make 64-byte aligned
+ STORE32 /* no, make 64-byte aligned */
#endif
.Lmemset_mainloop:
Home |
Main Index |
Thread Index |
Old Index