From 13d048a2219f422202f4dad108734b24c0b32cac Mon Sep 17 00:00:00 2001 From: Luuk van Dijk Date: Wed, 6 Jul 2011 00:02:03 +0200 Subject: [PATCH] gc: fix %N for OGOTO nodes. 6g -W crashed on any source with a goto. this fixes that. R=rsc, r CC=golang-dev https://golang.org/cl/4675052 --- src/cmd/gc/subr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmd/gc/subr.c b/src/cmd/gc/subr.c index 7c472147a25..40b0c4fd15b 100644 --- a/src/cmd/gc/subr.c +++ b/src/cmd/gc/subr.c @@ -1124,7 +1124,7 @@ Sconv(Fmt *fp) return 0; } - if(s->pkg != localpkg || longsymnames || (fp->flags & FmtLong)) { + if(s->pkg && s->pkg != localpkg || longsymnames || (fp->flags & FmtLong)) { // This one is for the user. If the package name // was used by multiple packages, give the full // import path to disambiguate.