mirror of
https://github.com/golang/go
synced 2024-11-23 09:30:03 -07: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
@ -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…
Reference in New Issue
Block a user