mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
cmd/link: delete oReader.flags
Same information is provided from the fields of the embedded goobj.Reader, and are accessed through it. Delete the flags field. Change-Id: I7a4f5dca054e567443d719b2931fceff231d6efc Reviewed-on: https://go-review.googlesource.com/c/go/+/394216 Trust: Cherry Mui <cherryyz@google.com> Run-TryBot: Cherry Mui <cherryyz@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Than McIntosh <thanm@google.com>
This commit is contained in:
parent
2da1e47fb0
commit
42d2d5e2b5
1 changed files with 1 additions and 3 deletions
|
|
@ -75,8 +75,7 @@ func (a Aux) Sym() Sym { return a.l.resolve(a.r, a.Aux.Sym()) }
|
||||||
type oReader struct {
|
type oReader struct {
|
||||||
*goobj.Reader
|
*goobj.Reader
|
||||||
unit *sym.CompilationUnit
|
unit *sym.CompilationUnit
|
||||||
version int // version of static symbol
|
version int // version of static symbol
|
||||||
flags uint32 // read from object file
|
|
||||||
pkgprefix string
|
pkgprefix string
|
||||||
syms []Sym // Sym's global index, indexed by local index
|
syms []Sym // Sym's global index, indexed by local index
|
||||||
pkg []uint32 // indices of referenced package by PkgIdx (index into loader.objs array)
|
pkg []uint32 // indices of referenced package by PkgIdx (index into loader.objs array)
|
||||||
|
|
@ -2076,7 +2075,6 @@ func (l *Loader) Preload(localSymVersion int, f *bio.Reader, lib *sym.Library, u
|
||||||
Reader: r,
|
Reader: r,
|
||||||
unit: unit,
|
unit: unit,
|
||||||
version: localSymVersion,
|
version: localSymVersion,
|
||||||
flags: r.Flags(),
|
|
||||||
pkgprefix: pkgprefix,
|
pkgprefix: pkgprefix,
|
||||||
syms: make([]Sym, ndef+nhashed64def+nhasheddef+r.NNonpkgdef()+r.NNonpkgref()),
|
syms: make([]Sym, ndef+nhashed64def+nhasheddef+r.NNonpkgdef()+r.NNonpkgref()),
|
||||||
ndef: ndef,
|
ndef: ndef,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue