mirror of
https://github.com/golang/go
synced 2024-11-02 08:01:26 +00:00
cmd/link: remove duplicate symtab entry for global functions
golang.org/cl/16436 added a local symbol for every global function, but also added a duplicate entry for the global symbol. Surprisingly this hasn't caused any noticeable problems, but it's still wrong. Change-Id: Icd3906760f8aaf7bef31ffd4f2d866d73d36dc2c Reviewed-on: https://go-review.googlesource.com/16581 Reviewed-by: Ian Lance Taylor <iant@golang.org>
This commit is contained in:
parent
0e23ca41d9
commit
ebafc80eba
1 changed files with 1 additions and 0 deletions
|
@ -175,6 +175,7 @@ func putelfsym(x *LSym, s string, t int, addr int64, size int64, ver int, go_ *L
|
|||
putelfsyment(putelfstr("local."+s), addr, size, STB_LOCAL<<4|type_&0xf, elfshnum, other)
|
||||
x.LocalElfsym = int32(numelfsym)
|
||||
numelfsym++
|
||||
return
|
||||
} else if bind != elfbind {
|
||||
return
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue