Commit 2524ed19 authored by Michael Munday's avatar Michael Munday

cmd/compile: regenerate known formats for TestFormats

The formatting verb '%#x' was used for uint32 values in CL 132956.
This fixes TestFormats.

Change-Id: I3ab6519bde2cb74410fdca14829689cb46bf7022
Reviewed-on: https://go-review.googlesource.com/133595
Run-TryBot: Michael Munday <mike.munday@ibm.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: default avatarDaniel Martí <mvdan@mvdan.cc>
parent 3c1b7bc7
...@@ -724,6 +724,7 @@ var knownFormats = map[string]string{ ...@@ -724,6 +724,7 @@ var knownFormats = map[string]string{
"uint16 %d": "", "uint16 %d": "",
"uint16 %v": "", "uint16 %v": "",
"uint16 %x": "", "uint16 %x": "",
"uint32 %#x": "",
"uint32 %d": "", "uint32 %d": "",
"uint32 %v": "", "uint32 %v": "",
"uint32 %x": "", "uint32 %x": "",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment