From 52ecd2ce96c7635eaf731c1003fdd4507f4d08aa Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Thu, 12 Dec 2013 18:55:05 -0800 Subject: [PATCH] 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 --- src/pkg/debug/dwarf/open.go | 1 - 1 file changed, 1 deletion(-) 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 -- 2.48.1