Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/lib/libc/arch/arm/string correct comment, it's r0, not a0.



details:   https://anonhg.NetBSD.org/src/rev/01299d28f9ee
branches:  trunk
changeset: 535390:01299d28f9ee
user:      chris <chris%NetBSD.org@localhost>
date:      Sat Aug 17 01:23:36 2002 +0000

description:
correct comment, it's r0, not a0.

diffstat:

 lib/libc/arch/arm/string/ffs.S |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 129d9cca161b -r 01299d28f9ee lib/libc/arch/arm/string/ffs.S
--- a/lib/libc/arch/arm/string/ffs.S    Sat Aug 17 01:22:33 2002 +0000
+++ b/lib/libc/arch/arm/string/ffs.S    Sat Aug 17 01:23:36 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ffs.S,v 1.2 2001/11/13 13:07:52 bjh21 Exp $    */
+/*     $NetBSD: ffs.S,v 1.3 2002/08/17 01:23:36 chris Exp $    */
 /*
  * Copyright (c) 2001 Christopher Gilbert
  * All rights reserved.
@@ -30,7 +30,7 @@
 
 #include <machine/asm.h>
 
-RCSID("$NetBSD: ffs.S,v 1.2 2001/11/13 13:07:52 bjh21 Exp $")
+RCSID("$NetBSD: ffs.S,v 1.3 2002/08/17 01:23:36 chris Exp $")
 
 /*
  * ffs - find first set bit, this algorithm isolates the first set
@@ -46,7 +46,7 @@
  */
 
 ENTRY(ffs)
-       /* Standard trick to isolate bottom bit in a0 or 0 if r0 = 0 on entry */
+       /* Standard trick to isolate bottom bit in r0 or 0 if r0 = 0 on entry */
        rsb     r1, r0, #0
        ands    r0, r0, r1
        /*



Home | Main Index | Thread Index | Old Index