cmd/compile: move Heapaddr field from Name to Param

No performance impact, just cleanup.

Passes toolstash -cmp.

Change-Id: Ic7957d2686de53a9680c2bdefe926cccccd73a5c
Reviewed-on: https://go-review.googlesource.com/36316
Run-TryBot: Josh Bleecher Snyder <josharian@gmail.com>
Reviewed-by: Matthew Dempsky <mdempsky@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
Josh Bleecher Snyder 2016-10-28 11:42:40 -07:00
parent 5c90e1cf8a
commit ad784caa74
5 changed files with 12 additions and 12 deletions

View file

@ -23,8 +23,8 @@ func TestSizeof(t *testing.T) {
_64bit uintptr // size on 64bit platforms
}{
{Func{}, 100, 168},
{Name{}, 44, 72},
{Param{}, 24, 48},
{Name{}, 40, 64},
{Param{}, 28, 56},
{Node{}, 96, 152},
{Sym{}, 64, 120},
{Type{}, 64, 104},