From 405a280d01ee6434eea306e3f849ba0586cc8f78 Mon Sep 17 00:00:00 2001 From: Josh Bleecher Snyder Date: Thu, 20 Apr 2017 07:13:02 -0700 Subject: cmd/internal/obj: eliminate LSym.Version There were only two versions, 0 and 1, and the only user of version 1 was the assembler, to indicate that a symbol was static. Rename LSym.Version to Static, and add it to LSym.Attributes. Simplify call-sites. Passes toolstash-check. Change-Id: Iabd39918f5019cce78f381d13f0481ae09f3871f Reviewed-on: https://go-review.googlesource.com/41201 Run-TryBot: Josh Bleecher Snyder TryBot-Result: Gobot Gobot Reviewed-by: Matthew Dempsky --- src/cmd/compile/internal/ssa/export_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/cmd/compile/internal/ssa/export_test.go') diff --git a/src/cmd/compile/internal/ssa/export_test.go b/src/cmd/compile/internal/ssa/export_test.go index 1b18d74575..e2d8a2d69b 100644 --- a/src/cmd/compile/internal/ssa/export_test.go +++ b/src/cmd/compile/internal/ssa/export_test.go @@ -114,7 +114,7 @@ func (DummyFrontend) Line(_ src.XPos) string { func (DummyFrontend) AllocFrame(f *Func) { } func (d DummyFrontend) Syslook(s string) *obj.LSym { - return d.ctxt.Lookup(s, 0) + return d.ctxt.Lookup(s) } func (DummyFrontend) UseWriteBarrier() bool { return true // only writebarrier_test cares -- cgit v1.2.3-54-g00ecf