1
0
mirror of https://github.com/golang/go synced 2024-11-15 02:50:31 -07:00

cmd/compile/internal/ssa: correct error message for AuxArm64BitField

Change-Id: I2e1f48c02cb5c6e90a9cb894eb3bc330a4c5c4b5
GitHub-Last-Rev: 303d1f8a13
GitHub-Pull-Request: golang/go#67124
Reviewed-on: https://go-review.googlesource.com/c/go/+/582615
Reviewed-by: Keith Randall <khr@google.com>
Reviewed-by: Jorropo <jorropo.pgm@gmail.com>
Reviewed-by: Keith Randall <khr@golang.org>
Auto-Submit: Keith Randall <khr@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: David Chase <drchase@google.com>
This commit is contained in:
zhangjian 2024-05-01 06:20:37 +00:00 committed by Gopher Robot
parent 44b54b99c9
commit 18dd682672

View File

@ -139,7 +139,7 @@ func (v *Value) AuxValAndOff() ValAndOff {
func (v *Value) AuxArm64BitField() arm64BitField {
if opcodeTable[v.Op].auxType != auxARM64BitField {
v.Fatalf("op %s doesn't have a ValAndOff aux field", v.Op)
v.Fatalf("op %s doesn't have a ARM64BitField aux field", v.Op)
}
return arm64BitField(v.AuxInt)
}