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/gen Fix comments



details:   https://anonhg.NetBSD.org/src/rev/ec7fbd39dbe4
branches:  trunk
changeset: 347002:ec7fbd39dbe4
user:      skrll <skrll%NetBSD.org@localhost>
date:      Wed Aug 10 16:40:24 2016 +0000

description:
Fix comments

diffstat:

 lib/libc/arch/mips/gen/makecontext.c |  7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)

diffs (29 lines):

diff -r 3e2cab08e490 -r ec7fbd39dbe4 lib/libc/arch/mips/gen/makecontext.c
--- a/lib/libc/arch/mips/gen/makecontext.c      Wed Aug 10 10:09:42 2016 +0000
+++ b/lib/libc/arch/mips/gen/makecontext.c      Wed Aug 10 16:40:24 2016 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: makecontext.c,v 1.7 2011/09/20 08:42:29 joerg Exp $    */
+/*     $NetBSD: makecontext.c,v 1.8 2016/08/10 16:40:24 skrll Exp $    */
 
 /*-
  * Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
 
 #include <sys/cdefs.h>
 #if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: makecontext.c,v 1.7 2011/09/20 08:42:29 joerg Exp $");
+__RCSID("$NetBSD: makecontext.c,v 1.8 2016/08/10 16:40:24 skrll Exp $");
 #endif
 
 #include <inttypes.h>
@@ -85,9 +85,8 @@
        for (i = 0; i < argc && i < 8; i++)
                /* LINTED __greg_t is safe */
                gr[_REG_A0 + i] = va_arg(ap, __greg_t);
-       /* Pass remaining arguments on the stack above the $a0-3 gap. */
+       /* Pass remaining arguments on the stack */
 #endif
-       /* Pass remaining arguments on the stack above the $a0-3 gap. */
        for (; i < argc; i++)
                /* LINTED uintptr_t is safe */
                *sp++ = va_arg(ap, __greg_t);



Home | Main Index | Thread Index | Old Index