1
0
mirror of https://github.com/golang/go synced 2024-09-30 06:24:33 -06:00

cmd/compile: remove toolstash workaround in bexport.go

Change-Id: Ie4facdcab4b35cf7d350c4b8fa06a3c5a0c6caeb
Reviewed-on: https://go-review.googlesource.com/108875
Run-TryBot: Matthew Dempsky <mdempsky@google.com>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
Matthew Dempsky 2018-04-23 10:52:16 -07:00
parent 7759b32a62
commit 545ef11037

View File

@ -1002,13 +1002,7 @@ func parName(f *types.Field, numbered bool) string {
return ""
}
// The "s != f.Sym" check here is unnecessary and causes blank
// input/receiver parameters to receive vargen numbers
// below. However, this is consistent with the logic it
// replaces, so we keep it for now to appease toolstash-check.
//
// TODO(mdempsky): Simplify to just "if s.Name == "_"".
if s != f.Sym && s.Name == "_" {
if s.Name == "_" {
return "_"
}