diff options
| author | Keith Randall <khr@golang.org> | 2020-06-15 14:43:02 -0700 |
|---|---|---|
| committer | Keith Randall <khr@golang.org> | 2020-06-18 20:57:49 +0000 |
| commit | 40ef1faabc44ab8ea28a1cf282ecab723ecb0394 (patch) | |
| tree | 1c04bdc4b2eb3226759499dd6867c6771510ba75 /src/cmd/compile/fmtmap_test.go | |
| parent | 377c1536f548ae6295699475683db7574bea3d51 (diff) | |
| download | go-40ef1faabc44ab8ea28a1cf282ecab723ecb0394.tar.xz | |
cmd/compile: redo flag constant ops for arm
Encode the flag results in an auxint field instead of having
one opcode per flag state. This helps us handle the new *noov
branches in a unified manner.
This is only for arm, arm64 is in a subsequent CL.
We could extend to other architectures as well, athough it would
only be cleanup, no behavioral change.
Update #39505
Change-Id: Ia46cea596faad540d1496c5915ab1274571543f0
Reviewed-on: https://go-review.googlesource.com/c/go/+/238077
Run-TryBot: Keith Randall <khr@golang.org>
Reviewed-by: Cherry Zhang <cherryyz@google.com>
Diffstat (limited to 'src/cmd/compile/fmtmap_test.go')
| -rw-r--r-- | src/cmd/compile/fmtmap_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cmd/compile/fmtmap_test.go b/src/cmd/compile/fmtmap_test.go index cb7a7d9af8..179c60187f 100644 --- a/src/cmd/compile/fmtmap_test.go +++ b/src/cmd/compile/fmtmap_test.go @@ -115,6 +115,7 @@ var knownFormats = map[string]string{ "cmd/compile/internal/ssa.Sym %v": "", "cmd/compile/internal/ssa.ValAndOff %s": "", "cmd/compile/internal/ssa.domain %v": "", + "cmd/compile/internal/ssa.flagConstant %s": "", "cmd/compile/internal/ssa.posetNode %v": "", "cmd/compile/internal/ssa.posetTestOp %v": "", "cmd/compile/internal/ssa.rbrank %d": "", |
