mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
cmd/compile: fix late expand_calls leaf type for OpStructSelect/OpArraySelect
For the example in #43551, before late call expansion, the OpArg type is decomposed to int64. But the late call expansion is currently decompose it to "x.Key" instead. This CL make expand_calls decompose further for struct { 1-field type } and array [1]elem. This matches the previous rules for early decompose args: (StructSelect (StructMake1 x)) => x (ArraySelect (ArrayMake1 x)) => x Fixes #43551 Change-Id: I2f1ebe18cb81cb967f494331c3d237535d2859e7 Reviewed-on: https://go-review.googlesource.com/c/go/+/282332 Trust: Cuong Manh Le <cuong.manhle.vn@gmail.com> Run-TryBot: Cuong Manh Le <cuong.manhle.vn@gmail.com> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: David Chase <drchase@google.com>
This commit is contained in:
parent
7cee66d4cb
commit
fa90aaca7d
4 changed files with 36 additions and 1 deletions
|
|
@ -194,7 +194,8 @@ func expandCalls(f *Func) {
|
|||
}
|
||||
break
|
||||
}
|
||||
if leaf.Op == OpIData {
|
||||
switch leaf.Op {
|
||||
case OpIData, OpStructSelect, OpArraySelect:
|
||||
leafType = removeTrivialWrapperTypes(leaf.Type)
|
||||
}
|
||||
aux := selector.Aux
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue