mirror of
https://github.com/golang/go
synced 2024-11-12 09:20:22 -07:00
cgo: include line number information to keep go/printer happy
Fixes #443. R=dho CC=golang-dev https://golang.org/cl/179095
This commit is contained in:
parent
d85bb81878
commit
044ebae2f0
@ -94,7 +94,8 @@ func main() {
|
||||
case "call":
|
||||
if !cref.TypeName {
|
||||
// Is an actual function call.
|
||||
*cref.Expr = &ast.Ident{Value: "_C_" + cref.Name}
|
||||
pos := (*cref.Expr).Pos()
|
||||
*cref.Expr = &ast.Ident{Position: pos, Value: "_C_" + cref.Name}
|
||||
p.Funcdef[cref.Name] = cref.FuncType
|
||||
break
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user