diff options
| author | Ian Lance Taylor <iant@golang.org> | 2013-12-12 18:55:05 -0800 |
|---|---|---|
| committer | Ian Lance Taylor <iant@golang.org> | 2013-12-12 18:55:05 -0800 |
| commit | 52ecd2ce96c7635eaf731c1003fdd4507f4d08aa (patch) | |
| tree | aa0eba3f6ff1070bf2c3c9248ccf11cb063842ee /src/pkg/debug | |
| parent | c0946afb9c6281987692da33679d021ca2487339 (diff) | |
| download | go-52ecd2ce96c7635eaf731c1003fdd4507f4d08aa.tar.xz | |
debug/dwarf: remove unused field addrsize from Data
The addrsize field is not a constant for an entire executable
file, and is now handled by the dataFormat interface when
reading the data.
R=golang-dev, minux.ma, rsc
CC=golang-dev
https://golang.org/cl/41620043
Diffstat (limited to 'src/pkg/debug')
| -rw-r--r-- | src/pkg/debug/dwarf/open.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/pkg/debug/dwarf/open.go b/src/pkg/debug/dwarf/open.go index 37a518b6d3..7579892529 100644 --- a/src/pkg/debug/dwarf/open.go +++ b/src/pkg/debug/dwarf/open.go @@ -24,7 +24,6 @@ type Data struct { // parsed data abbrevCache map[uint32]abbrevTable - addrsize int order binary.ByteOrder typeCache map[Offset]Type unit []unit |
