Commit 1db0aae3 authored by Dave Cheney's avatar Dave Cheney

cmd/internal/obj: remove unused obj.Linksymfmt

obj.Linksymfmt is no longer referenced by any packages in cmd/...

Change-Id: Id4d9213d1577e13580b60755dbf7da313b17cb0e
Reviewed-on: https://go-review.googlesource.com/41171
Run-TryBot: Dave Cheney <dave@cheney.net>
Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
parent 1368977a
...@@ -101,10 +101,3 @@ func (ctxt *Link) Int64Sym(i int64) *LSym { ...@@ -101,10 +101,3 @@ func (ctxt *Link) Int64Sym(i int64) *LSym {
s.Set(AttrLocal, true) s.Set(AttrLocal, true)
}) })
} }
func Linksymfmt(s *LSym) string {
if s == nil {
return "<nil>"
}
return s.Name
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment