mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
cmd/compile: fix fmt_test.go after CL 170062
Updates #22326. Change-Id: Ia9173b6eb29b2a4f90f4ba39bf53b6e9b7a6d6bf Reviewed-on: https://go-review.googlesource.com/c/go/+/179398 Run-TryBot: Matthew Dempsky <mdempsky@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
parent
913d290402
commit
cd24849e8b
1 changed files with 33 additions and 32 deletions
|
|
@ -65,7 +65,6 @@ var knownFormats = map[string]string{
|
||||||
"*math/big.Int %s": "",
|
"*math/big.Int %s": "",
|
||||||
"*math/big.Int %v": "",
|
"*math/big.Int %v": "",
|
||||||
"[16]byte %x": "",
|
"[16]byte %x": "",
|
||||||
"[]*cmd/compile/internal/gc.Node %v": "",
|
|
||||||
"[]*cmd/compile/internal/ssa.Block %v": "",
|
"[]*cmd/compile/internal/ssa.Block %v": "",
|
||||||
"[]*cmd/compile/internal/ssa.Value %v": "",
|
"[]*cmd/compile/internal/ssa.Value %v": "",
|
||||||
"[][]string %q": "",
|
"[][]string %q": "",
|
||||||
|
|
@ -172,36 +171,38 @@ var knownFormats = map[string]string{
|
||||||
"interface{} %s": "",
|
"interface{} %s": "",
|
||||||
"interface{} %v": "",
|
"interface{} %v": "",
|
||||||
"map[*cmd/compile/internal/gc.Node]*cmd/compile/internal/ssa.Value %v": "",
|
"map[*cmd/compile/internal/gc.Node]*cmd/compile/internal/ssa.Value %v": "",
|
||||||
|
"map[*cmd/compile/internal/gc.Node][]*cmd/compile/internal/gc.Node %v": "",
|
||||||
"map[cmd/compile/internal/ssa.ID]uint32 %v": "",
|
"map[cmd/compile/internal/ssa.ID]uint32 %v": "",
|
||||||
"math/big.Accuracy %s": "",
|
"math/big.Accuracy %s": "",
|
||||||
"reflect.Type %s": "",
|
"reflect.Type %s": "",
|
||||||
"rune %#U": "",
|
"rune %#U": "",
|
||||||
"rune %c": "",
|
"rune %c": "",
|
||||||
"rune %q": "",
|
"rune %q": "",
|
||||||
"string %-*s": "",
|
"string %-*s": "",
|
||||||
"string %-16s": "",
|
"string %-16s": "",
|
||||||
"string %-6s": "",
|
"string %-6s": "",
|
||||||
"string %.*s": "",
|
"string %.*s": "",
|
||||||
"string %q": "",
|
"string %q": "",
|
||||||
"string %s": "",
|
"string %s": "",
|
||||||
"string %v": "",
|
"string %v": "",
|
||||||
"time.Duration %d": "",
|
"time.Duration %d": "",
|
||||||
"time.Duration %v": "",
|
"time.Duration %v": "",
|
||||||
"uint %04x": "",
|
"uint %04x": "",
|
||||||
"uint %5d": "",
|
"uint %5d": "",
|
||||||
"uint %d": "",
|
"uint %d": "",
|
||||||
"uint %x": "",
|
"uint %x": "",
|
||||||
"uint16 %d": "",
|
"uint16 %d": "",
|
||||||
"uint16 %v": "",
|
"uint16 %v": "",
|
||||||
"uint16 %x": "",
|
"uint16 %x": "",
|
||||||
"uint32 %#x": "",
|
"uint32 %#x": "",
|
||||||
"uint32 %d": "",
|
"uint32 %d": "",
|
||||||
"uint32 %v": "",
|
"uint32 %v": "",
|
||||||
"uint32 %x": "",
|
"uint32 %x": "",
|
||||||
"uint64 %08x": "",
|
"uint64 %08x": "",
|
||||||
"uint64 %d": "",
|
"uint64 %d": "",
|
||||||
"uint64 %x": "",
|
"uint64 %x": "",
|
||||||
"uint8 %d": "",
|
"uint8 %d": "",
|
||||||
"uint8 %x": "",
|
"uint8 %v": "",
|
||||||
"uintptr %d": "",
|
"uint8 %x": "",
|
||||||
|
"uintptr %d": "",
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue