Commit d6dfb029 authored by Matthew Dempsky's avatar Matthew Dempsky Committed by Ian Lance Taylor

cmd/internal/gc: remove unused fields

Change-Id: I3096a7497955bc475739739ee23be387e9162867
Reviewed-on: https://go-review.googlesource.com/7210
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: default avatarIan Lance Taylor <iant@golang.org>
parent 23fd374b
...@@ -112,7 +112,6 @@ type Pkg struct { ...@@ -112,7 +112,6 @@ type Pkg struct {
type Sym struct { type Sym struct {
Lexical uint16 Lexical uint16
Flags uint8 Flags uint8
Sym uint8 // huffman encoding in object file
Link *Sym Link *Sym
Uniqgen uint32 Uniqgen uint32
Importdef *Pkg // where imported definition was found Importdef *Pkg // where imported definition was found
...@@ -399,7 +398,6 @@ type Sig struct { ...@@ -399,7 +398,6 @@ type Sig struct {
type Io struct { type Io struct {
infile string infile string
bin *obj.Biobuf bin *obj.Biobuf
ilineno int32
nlsemi int nlsemi int
eofnl int eofnl int
last int last int
......
...@@ -27,7 +27,6 @@ type Node struct { ...@@ -27,7 +27,6 @@ type Node struct {
Nointerface bool Nointerface bool
Ullman uint8 // sethi/ullman number Ullman uint8 // sethi/ullman number
Addable uint8 // type of addressability - 0 is not addressable Addable uint8 // type of addressability - 0 is not addressable
Trecur uint8 // to detect loops
Etype uint8 // op for OASOP, etype for OTYPE, exclam for export Etype uint8 // op for OASOP, etype for OTYPE, exclam for export
Bounded bool // bounds check unnecessary Bounded bool // bounds check unnecessary
Class uint8 // PPARAM, PAUTO, PEXTERN, etc Class uint8 // PPARAM, PAUTO, PEXTERN, etc
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment