Module Name: src
Committed By: matt
Date: Mon Jan 14 19:15:14 UTC 2013
Modified Files:
src/common/lib/libc/arch/arm/string: memset_arm.S
Log Message:
Fix two typos
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/common/lib/libc/arch/arm/string/memset_arm.S
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/common/lib/libc/arch/arm/string/memset_arm.S
diff -u src/common/lib/libc/arch/arm/string/memset_arm.S:1.1 src/common/lib/libc/arch/arm/string/memset_arm.S:1.2
--- src/common/lib/libc/arch/arm/string/memset_arm.S:1.1 Sat Jan 12 20:27:13 2013
+++ src/common/lib/libc/arch/arm/string/memset_arm.S Mon Jan 14 19:15:13 2013
@@ -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 @@ ENTRY(memset)
* 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 @@ ENTRY(memset)
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: