From 94b796133b3a236530f933362a3feb90af1fcbf2 Mon Sep 17 00:00:00 2001 From: Shenghou Ma Date: Tue, 31 Jan 2012 10:59:29 -0500 Subject: [PATCH] 5l: make -v option output less nonessential clutter 5l -v is for benchmarking various parts of the loader, but this code in obj.c will clutter the output. I only comment them out, because this is on par with 8l/6l. R=golang-dev CC=golang-dev https://golang.org/cl/5600046 --- src/cmd/5l/obj.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cmd/5l/obj.c b/src/cmd/5l/obj.c index 1496719439..03b106d4f0 100644 --- a/src/cmd/5l/obj.c +++ b/src/cmd/5l/obj.c @@ -558,8 +558,8 @@ loop: // redefinitions. s = p->from.sym; if(s->dupok) { - if(debug['v']) - Bprint(&bso, "skipping %s in %s: dupok\n", s->name, pn); +// if(debug['v']) +// Bprint(&bso, "skipping %s in %s: dupok\n", s->name, pn); goto loop; } if(s->file == nil)