We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6985ab2 commit de561dcCopy full SHA for de561dc
src/cmd/compile/internal/ssa/rewrite.go
@@ -1632,7 +1632,7 @@ func sizeof(t interface{}) int64 {
1632
// a register. It assumes float64 values will always fit into registers
1633
// even if that isn't strictly true.
1634
func registerizable(b *Block, typ *types.Type) bool {
1635
- if typ.IsPtrShaped() || typ.IsFloat() {
+ if typ.IsPtrShaped() || typ.IsFloat() || typ.IsBoolean() {
1636
return true
1637
}
1638
if typ.IsInteger() {
0 commit comments