1
0
mirror of https://github.com/golang/go synced 2024-09-30 18:28:32 -06:00

cmd/compile/internal/gc: make funcsyms a []*Node

Remove another use of NodeList.

Change-Id: Ice07eff862caf715f722dec7829006bf71715b07
Reviewed-on: https://go-review.googlesource.com/15432
Reviewed-by: Dave Cheney <dave@cheney.net>
This commit is contained in:
Robert Griesemer 2015-10-05 16:33:53 -07:00
parent 8815093572
commit a2119aca7d
3 changed files with 3 additions and 6 deletions

View File

@ -1499,5 +1499,5 @@ func makefuncsym(s *Sym) {
s1 := funcsym(s) s1 := funcsym(s)
s1.Def = newfuncname(s1) s1.Def = newfuncname(s1)
s1.Def.Func.Shortname = newname(s) s1.Def.Func.Shortname = newname(s)
funcsyms = list(funcsyms, s1.Def) funcsyms = append(funcsyms, s1.Def)
} }

View File

@ -589,7 +589,7 @@ var exportlist []*Node
var importlist []*Node // imported functions and methods with inlinable bodies var importlist []*Node // imported functions and methods with inlinable bodies
var funcsyms *NodeList var funcsyms []*Node
var dclcontext uint8 // PEXTERN/PAUTO var dclcontext uint8 // PEXTERN/PAUTO

View File

@ -104,8 +104,6 @@ func dumpobj() {
} }
func dumpglobls() { func dumpglobls() {
var n *Node
// add globals // add globals
for _, n := range externdcl { for _, n := range externdcl {
if n.Op != ONAME { if n.Op != ONAME {
@ -125,8 +123,7 @@ func dumpglobls() {
ggloblnod(n) ggloblnod(n)
} }
for l := funcsyms; l != nil; l = l.Next { for _, n := range funcsyms {
n = l.N
dsymptr(n.Sym, 0, n.Sym.Def.Func.Shortname.Sym, 0) dsymptr(n.Sym, 0, n.Sym.Def.Func.Shortname.Sym, 0)
ggloblsym(n.Sym, int32(Widthptr), obj.DUPOK|obj.RODATA) ggloblsym(n.Sym, int32(Widthptr), obj.DUPOK|obj.RODATA)
} }