Source-Changes-HG archive

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

[src/trunk]: src/usr.bin/xlint/lint1 lint: clean up debug logging for initial...



details:   https://anonhg.NetBSD.org/src/rev/542521ded4a9
branches:  trunk
changeset: 948723:542521ded4a9
user:      rillig <rillig%NetBSD.org@localhost>
date:      Tue Dec 29 20:07:04 2020 +0000

description:
lint: clean up debug logging for initializations

diffstat:

 usr.bin/xlint/lint1/init.c |  17 ++++++++---------
 1 files changed, 8 insertions(+), 9 deletions(-)

diffs (46 lines):

diff -r 797df63b3563 -r 542521ded4a9 usr.bin/xlint/lint1/init.c
--- a/usr.bin/xlint/lint1/init.c        Tue Dec 29 19:57:44 2020 +0000
+++ b/usr.bin/xlint/lint1/init.c        Tue Dec 29 20:07:04 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: init.c,v 1.40 2020/12/29 19:57:44 rillig Exp $ */
+/*     $NetBSD: init.c,v 1.41 2020/12/29 20:07:04 rillig Exp $ */
 
 /*
  * Copyright (c) 1994, 1995 Jochen Pohl
@@ -37,7 +37,7 @@
 
 #include <sys/cdefs.h>
 #if defined(__RCSID) && !defined(lint)
-__RCSID("$NetBSD: init.c,v 1.40 2020/12/29 19:57:44 rillig Exp $");
+__RCSID("$NetBSD: init.c,v 1.41 2020/12/29 20:07:04 rillig Exp $");
 #endif
 
 #include <ctype.h>
@@ -153,21 +153,20 @@
        istk_t  *istk;
        sym_t   *m;
 
+       istk = initstk;
        DPRINTF(("%s: pop type=%s, brace=%d remaining=%d named=%d\n", __func__,
-           tyname(buf, sizeof(buf),
-               initstk->i_type ? initstk->i_type : initstk->i_subt),
-           initstk->i_brace, initstk->i_cnt, initstk->i_namedmem));
+           tyname(buf, sizeof buf, istk->i_type ? istk->i_type : istk->i_subt),
+           istk->i_brace, istk->i_cnt, istk->i_namedmem));
 
-       initstk = (istk = initstk)->i_nxt;
+       initstk = istk->i_nxt;
        free(istk);
        istk = initstk;
        if (istk == NULL)
                LERROR("initstack_pop_item()");
 
        DPRINTF(("%s: top type=%s, brace=%d remaining=%d named=%d\n", __func__,
-           tyname(buf, sizeof(buf),
-               initstk->i_type ? initstk->i_type : initstk->i_subt),
-           initstk->i_brace, initstk->i_cnt, initstk->i_namedmem));
+           tyname(buf, sizeof buf, istk->i_type ? istk->i_type : istk->i_subt),
+           istk->i_brace, istk->i_cnt, istk->i_namedmem));
 
        istk->i_cnt--;
        if (istk->i_cnt < 0)



Home | Main Index | Thread Index | Old Index