mirror of
https://github.com/golang/go
synced 2024-11-17 09:54:46 -07:00
cmd/compile/internal/pkginit: fix typecheck.DeclFunc call
CL 403935 changed the API for typecheck.DeclFunc, while CL 403851 was submitted in the mean time and added another call to it. Change-Id: I0de59f34197bf241c1dd42cffbab7a91f9eb825d Reviewed-on: https://go-review.googlesource.com/c/go/+/404434 Run-TryBot: Matthew Dempsky <mdempsky@google.com> Auto-Submit: Matthew Dempsky <mdempsky@google.com> Reviewed-by: David Chase <drchase@google.com> TryBot-Result: Gopher Robot <gobot@golang.org>
This commit is contained in:
parent
983906fa6d
commit
72d1cb092e
@ -107,7 +107,7 @@ func Task() *ir.Name {
|
|||||||
base.Pos = base.AutogeneratedPos
|
base.Pos = base.AutogeneratedPos
|
||||||
typecheck.DeclContext = ir.PEXTERN
|
typecheck.DeclContext = ir.PEXTERN
|
||||||
name := noder.Renameinit()
|
name := noder.Renameinit()
|
||||||
fnInit := typecheck.DeclFunc(name, ir.NewFuncType(base.Pos, nil, nil, nil))
|
fnInit := typecheck.DeclFunc(name, nil, nil, nil)
|
||||||
|
|
||||||
// Get an array of intrumented global variables.
|
// Get an array of intrumented global variables.
|
||||||
globals := instrumentGlobals(fnInit)
|
globals := instrumentGlobals(fnInit)
|
||||||
|
Loading…
Reference in New Issue
Block a user