File tree 2 files changed +3
-4
lines changed
src/cmd/compile/internal/gc 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -51,15 +51,14 @@ type Sym struct {
51
51
Pkg * Pkg
52
52
Name string // object name
53
53
Def * Node // definition: ONAME OTYPE OPACK or OLITERAL
54
- Block int32 // blocknumber to catch redeclaration
55
54
Lastlineno src.XPos // last declaration for diagnostic
55
+ Block int32 // blocknumber to catch redeclaration
56
56
57
+ flags bitset8
57
58
Label * Node // corresponding label (ephemeral)
58
59
Origpkg * Pkg // original package for . import
59
60
Lsym * obj.LSym
60
61
Fsym * Sym // funcsym
61
-
62
- flags bitset8
63
62
}
64
63
65
64
const (
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ func TestSizeof(t *testing.T) {
26
26
{Name {}, 36 , 56 },
27
27
{Param {}, 28 , 56 },
28
28
{Node {}, 84 , 136 },
29
- {Sym {}, 64 , 120 },
29
+ {Sym {}, 64 , 112 },
30
30
{Type {}, 60 , 96 },
31
31
{MapType {}, 20 , 40 },
32
32
{ForwardType {}, 20 , 32 },
You can’t perform that action at this time.
0 commit comments