cmd/compile/internal/ssa: adjust default to the end

This commit is contained in:
Jes Cok 2023-10-29 14:41:43 +08:00
parent 8c92897e15
commit ea6abb2dc2
1 changed files with 2 additions and 2 deletions

View File

@ -377,10 +377,10 @@ func (b *Block) AuxIntString() string {
return fmt.Sprintf("%v", int8(b.AuxInt))
case "uint8":
return fmt.Sprintf("%v", uint8(b.AuxInt))
default: // type specified but not implemented - print as int64
return fmt.Sprintf("%v", b.AuxInt)
case "": // no aux int type
return ""
default: // type specified but not implemented - print as int64
return fmt.Sprintf("%v", b.AuxInt)
}
}