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

go.tools/ssa: fix debug printing

R=adonovan, r
CC=golang-dev
https://golang.org/cl/9774043
This commit is contained in:
Robert Griesemer 2013-05-25 09:51:29 -07:00
parent 8cdf1f1cb1
commit 7a48931508

View File

@ -262,7 +262,7 @@ func makeBridgeMethod(prog *Program, typ types.Type, cand *candidate) *Function
sig := types.NewSignature(types.NewVar(nil, "recv", typ), old.Params(), old.Results(), old.IsVariadic())
if prog.mode&LogSource != 0 {
defer logStack("makeBridgeMethod %s, %s, type %s", typ, cand, &sig)()
defer logStack("makeBridgeMethod %s, %s, type %s", typ, cand, sig)()
}
fn := &Function{