From: Jes Cok Date: Sun, 29 Oct 2023 06:51:14 +0000 (+0000) Subject: cmd/compile/internal/ssa: adjust default to the end in *Block.AuxIntString X-Git-Tag: go1.22rc1~477 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=cbc403af1d9fa73b99cc07f80a2126771b73adfd;p=gostls13.git cmd/compile/internal/ssa: adjust default to the end in *Block.AuxIntString Change-Id: Id48cade7811e2dfbf78d3171fe202ad272534e37 GitHub-Last-Rev: ea6abb2dc216ebd4a42fc3dc25f39ea6869d2dad GitHub-Pull-Request: golang/go#63808 Reviewed-on: https://go-review.googlesource.com/c/go/+/538377 Auto-Submit: Keith Randall LUCI-TryBot-Result: Go LUCI Reviewed-by: Bryan Mills Reviewed-by: Keith Randall Reviewed-by: Keith Randall --- diff --git a/src/cmd/compile/internal/ssa/block.go b/src/cmd/compile/internal/ssa/block.go index 6d391ab011..4a24a181e5 100644 --- a/src/cmd/compile/internal/ssa/block.go +++ b/src/cmd/compile/internal/ssa/block.go @@ -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) } }