diff options
| author | Michael Hudson-Doyle <michael.hudson@canonical.com> | 2015-08-21 15:23:57 +1200 |
|---|---|---|
| committer | Ian Lance Taylor <iant@golang.org> | 2015-08-26 00:28:17 +0000 |
| commit | af78482d6b1f7af7ec8339da6cf5fbbad95146bb (patch) | |
| tree | d01b9ce14645d434749ab724d8a270c5ffc77790 /src/runtime | |
| parent | dc110f245d9469874b17709351ba637a5287f3eb (diff) | |
| download | go-af78482d6b1f7af7ec8339da6cf5fbbad95146bb.tar.xz | |
cmd/compile, cmd/link, reflect, runtime: remove type.zero field
No longer used after previous hashmap change.
Change-Id: I558470f872281e84a78406132df4e391d077b833
Reviewed-on: https://go-review.googlesource.com/13785
Run-TryBot: Michael Hudson-Doyle <michael.hudson@canonical.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'src/runtime')
| -rw-r--r-- | src/runtime/type.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/runtime/type.go b/src/runtime/type.go index 4b5631aab4..1321af8d1d 100644 --- a/src/runtime/type.go +++ b/src/runtime/type.go @@ -8,8 +8,8 @@ package runtime import "unsafe" -// Needs to be in sync with ../cmd/internal/ld/decodesym.go:/^func.commonsize, -// ../cmd/internal/gc/reflect.go:/^func.dcommontype and +// Needs to be in sync with ../cmd/compile/internal/ld/decodesym.go:/^func.commonsize, +// ../cmd/compile/internal/gc/reflect.go:/^func.dcommontype and // ../reflect/type.go:/^type.rtype. type _type struct { size uintptr @@ -27,7 +27,6 @@ type _type struct { _string *string x *uncommontype ptrto *_type - zero *byte // unused } type method struct { |
