mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
[dev.link] cmd: remove "2", another round
Rename the goobj2 package to goobj. Change-Id: Iff97b5575cbac45ac44de96b6bd9d555b9a4a12a Reviewed-on: https://go-review.googlesource.com/c/go/+/246444 Run-TryBot: Cherry Zhang <cherryyz@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Austin Clements <austin@google.com>
This commit is contained in:
parent
9559877543
commit
27e3778793
27 changed files with 219 additions and 219 deletions
|
|
@ -5,7 +5,7 @@
|
|||
package ld
|
||||
|
||||
import (
|
||||
"cmd/internal/goobj2"
|
||||
"cmd/internal/goobj"
|
||||
"cmd/internal/objabi"
|
||||
"cmd/internal/sys"
|
||||
"cmd/link/internal/loader"
|
||||
|
|
@ -161,7 +161,7 @@ func (d *deadcodePass) flood() {
|
|||
naux := d.ldr.NAux(symIdx)
|
||||
for i := 0; i < naux; i++ {
|
||||
a := d.ldr.Aux(symIdx, i)
|
||||
if a.Type() == goobj2.AuxGotype && !d.ctxt.linkShared {
|
||||
if a.Type() == goobj.AuxGotype && !d.ctxt.linkShared {
|
||||
// A symbol being reachable doesn't imply we need its
|
||||
// type descriptor. Don't mark it.
|
||||
// TODO: when -linkshared, the GCProg generation code
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue