mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
cmd/internal/obj: reduce alignment for gcbits
runtime.gcbits symbols are pointer masks, which are just bytes. Change-Id: I6e86359451c7da69da435e1928e55712dd904047 Reviewed-on: https://go-review.googlesource.com/c/go/+/353571 Trust: Cherry Mui <cherryyz@google.com> Run-TryBot: Cherry Mui <cherryyz@google.com> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Than McIntosh <thanm@google.com>
This commit is contained in:
parent
78c2529d73
commit
e5f6d8d00c
1 changed files with 1 additions and 0 deletions
|
|
@ -344,6 +344,7 @@ func (w *writer) Sym(s *LSym) {
|
|||
case strings.HasPrefix(s.Name, "go.string."),
|
||||
strings.HasPrefix(name, "type..namedata."),
|
||||
strings.HasPrefix(name, "type..importpath."),
|
||||
strings.HasPrefix(name, "runtime.gcbits."),
|
||||
strings.HasSuffix(name, ".opendefer"),
|
||||
strings.HasSuffix(name, ".arginfo0"),
|
||||
strings.HasSuffix(name, ".arginfo1"):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue