mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
cmd/compile/internal/gc: convert Type.Broke into a bool
Convert Type.Broke from a uint8 to a boolean This change passes go build -toolexec 'toolstash -cmp' -a std. Change-Id: I44e7548c71b00467e36576bdf62933c42555a21a Reviewed-on: https://go-review.googlesource.com/14307 Run-TryBot: Dave Cheney <dave@cheney.net> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Håvard Haugen <havard.haugen@gmail.com> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
parent
8712e1867b
commit
8937780c8a
7 changed files with 38 additions and 38 deletions
|
|
@ -165,8 +165,8 @@ type Type struct {
|
|||
Copyany uint8
|
||||
Local bool // created in this file
|
||||
Deferwidth uint8
|
||||
Broke uint8 // broken type definition.
|
||||
Isddd bool // TFIELD is ... argument
|
||||
Broke bool // broken type definition.
|
||||
Isddd bool // TFIELD is ... argument
|
||||
Align uint8
|
||||
Haspointers uint8 // 0 unknown, 1 no, 2 yes
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue