diff options
Diffstat (limited to 'src/debug')
| -rw-r--r-- | src/debug/gosym/symtab.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/debug/gosym/symtab.go b/src/debug/gosym/symtab.go index 3be612e1df..00701c2875 100644 --- a/src/debug/gosym/symtab.go +++ b/src/debug/gosym/symtab.go @@ -121,8 +121,8 @@ type Obj struct { type Table struct { Syms []Sym // nil for Go 1.3 and later binaries Funcs []Func - Files map[string]*Obj // nil for Go 1.2 and later binaries - Objs []Obj // nil for Go 1.2 and later binaries + Files map[string]*Obj // for Go 1.2 and later all files map to one Obj + Objs []Obj // for Go 1.2 and later only one Obj in slice go12line *LineTable // Go 1.2 line number table } |
