]> Cypherpunks.ru repositories - gostls13.git/commit
[dev.regabi] cmd/compile: fix linux-amd64-noopt builder
authorMatthew Dempsky <mdempsky@google.com>
Sun, 17 Jan 2021 06:27:23 +0000 (22:27 -0800)
committerMatthew Dempsky <mdempsky@google.com>
Sun, 17 Jan 2021 07:23:00 +0000 (07:23 +0000)
commite3027c6828230d01089afec0ab958040ba326abc
treebb377e33d881546c6fcf84b2e903b4fba508c621
parent59ff93fe645320c7d6a434ea7794546e89b12d45
[dev.regabi] cmd/compile: fix linux-amd64-noopt builder

CL 284223 tightened down the allowed expressions in mayCall, but
evidently a little too tight. The linux-amd64-noopt builder does in
fact see expressions with non-empty Init lists in arguments list.

Since I believe these can only appear on the RHS of LogicalExpr
expressions, this CL relaxes that one case.

Change-Id: I1e6bbd0449778c40ed2610b3e1ef6a825a84ada7
Reviewed-on: https://go-review.googlesource.com/c/go/+/284226
Trust: Matthew Dempsky <mdempsky@google.com>
Run-TryBot: Matthew Dempsky <mdempsky@google.com>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Cuong Manh Le <cuong.manhle.vn@gmail.com>
src/cmd/compile/internal/walk/walk.go