mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
cmd/compile: add Type.NumResults and friends
Passes toolstash-check. Change-Id: Id62bacff13fbd30de62b925d97a4e7bee1c66120 Reviewed-on: https://go-review.googlesource.com/59331 Run-TryBot: Josh Bleecher Snyder <josharian@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Matthew Dempsky <mdempsky@google.com>
This commit is contained in:
parent
e3442b4ee8
commit
2dd1f87d38
11 changed files with 28 additions and 25 deletions
|
|
@ -1187,8 +1187,8 @@ ok:
|
|||
}
|
||||
|
||||
ot = dcommontype(lsym, ot, t)
|
||||
inCount := t.Recvs().NumFields() + t.Params().NumFields()
|
||||
outCount := t.Results().NumFields()
|
||||
inCount := t.NumRecvs() + t.NumParams()
|
||||
outCount := t.NumResults()
|
||||
if isddd {
|
||||
outCount |= 1 << 15
|
||||
}
|
||||
|
|
@ -1198,7 +1198,7 @@ ok:
|
|||
ot += 4 // align for *rtype
|
||||
}
|
||||
|
||||
dataAdd := (inCount + t.Results().NumFields()) * Widthptr
|
||||
dataAdd := (inCount + t.NumResults()) * Widthptr
|
||||
ot = dextratype(lsym, ot, t, dataAdd)
|
||||
|
||||
// Array of rtype pointers follows funcType.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue