From: Russ Cox Date: Mon, 11 Oct 2010 20:21:03 +0000 (-0400) Subject: ld: be less picky about bad line number info X-Git-Tag: weekly.2010-10-13~29 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=054be1b6c34c2d142c9b0fbe1d7e62d08dd615e5;p=gostls13.git ld: be less picky about bad line number info Fixes #1175. R=lvd CC=golang-dev https://golang.org/cl/2439041 --- diff --git a/src/cmd/ld/dwarf.c b/src/cmd/ld/dwarf.c index 500c2fea80..7189a14d07 100644 --- a/src/cmd/ld/dwarf.c +++ b/src/cmd/ld/dwarf.c @@ -763,7 +763,7 @@ writelines(void) continue; } if (lh->file < 1) { // 0 is the past-EOF entry. - diag("instruction with linenumber past EOF in %s: %P", unitname, q); + //diag("instruction with linenumber past EOF in %s: %P", unitname, q); continue; }