mirror of
https://github.com/golang/go
synced 2024-11-26 10:48:22 -07:00
cmd/link/internal/loader: remove some dead code
Get rid of a couple of unused methods in the loader and symbol builder. Change-Id: I3822891757dc56356295a9bc99545b725d485eac Reviewed-on: https://go-review.googlesource.com/c/go/+/540260 Reviewed-by: Cherry Mui <cherryyz@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
This commit is contained in:
parent
993ca35bd4
commit
3f700ce4d2
@ -1316,14 +1316,6 @@ func (l *Loader) SetSymSect(i Sym, sect *sym.Section) {
|
||||
l.symSects[i] = sect.Index
|
||||
}
|
||||
|
||||
// growSects grows the slice used to store symbol sections.
|
||||
func (l *Loader) growSects(reqLen int) {
|
||||
curLen := len(l.symSects)
|
||||
if reqLen > curLen {
|
||||
l.symSects = append(l.symSects, make([]uint16, reqLen+1-curLen)...)
|
||||
}
|
||||
}
|
||||
|
||||
// NewSection creates a new (output) section.
|
||||
func (l *Loader) NewSection() *sym.Section {
|
||||
sect := new(sym.Section)
|
||||
|
@ -176,10 +176,6 @@ func (sb *SymbolBuilder) SetReachable(v bool) {
|
||||
sb.l.SetAttrReachable(sb.symIdx, v)
|
||||
}
|
||||
|
||||
func (sb *SymbolBuilder) setReachable() {
|
||||
sb.SetReachable(true)
|
||||
}
|
||||
|
||||
func (sb *SymbolBuilder) ReadOnly() bool {
|
||||
return sb.l.AttrReadOnly(sb.symIdx)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user