1
0
mirror of https://github.com/golang/go synced 2024-11-26 18:26:48 -07:00

cmd/compile/internal/ir: update CallExpr comment reference

CL 532795 changed CallExpr.X to CallExpr.Fun.

Change-Id: Ib2079e239a85daa4a3f5b5165c2cddc76a648b5e
Reviewed-on: https://go-review.googlesource.com/c/go/+/537175
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Matthew Dempsky <mdempsky@google.com>
Auto-Submit: Michael Pratt <mpratt@google.com>
This commit is contained in:
Michael Pratt 2023-10-23 14:51:51 -04:00 committed by Gopher Robot
parent 25ad137cf4
commit 9162c4be9c

View File

@ -181,7 +181,7 @@ func (n *BinaryExpr) SetOp(op Op) {
}
}
// A CallExpr is a function call X(Args).
// A CallExpr is a function call Fun(Args).
type CallExpr struct {
miniExpr
Fun Node