runtime: change functype's in and out fields to []*_type

Allows removing a few gratuitous unsafe.Pointer conversions and
parallels the type of reflect.funcType's in and out fields ([]*rtype).

Change-Id: Ie5ca230a94407301a854dfd8782a3180d5054bc4
Reviewed-on: https://go-review.googlesource.com/16163
Run-TryBot: Matthew Dempsky <mdempsky@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
This commit is contained in:
Matthew Dempsky 2015-10-21 10:40:39 -07:00
parent 163653eeaa
commit c279250946
3 changed files with 9 additions and 10 deletions

View file

@ -84,8 +84,8 @@ type slicetype struct {
type functype struct {
typ _type
dotdotdot bool
in slice
out slice
in []*_type
out []*_type
}
type ptrtype struct {