diff options
| author | Guoqi Chen <chenguoqi@loongson.cn> | 2025-11-04 17:22:24 +0800 |
|---|---|---|
| committer | abner chenc <chenguoqi@loongson.cn> | 2025-11-05 16:42:47 -0800 |
| commit | f01a1841fd9aff9229b27e3e1d3b8b4ee349cbc3 (patch) | |
| tree | 0e2d79b5f7b6a2941b6bcbb7b8082bc497fd6c16 /src/cmd/compile | |
| parent | 8cf7a0b4c956aad5a8b98efde8ea6b7cde173902 (diff) | |
| download | go-f01a1841fd9aff9229b27e3e1d3b8b4ee349cbc3.tar.xz | |
cmd/compile: fix error message on loong64
Change-Id: I90428330b17ab9f93ae94a77cefc24464e225df5
Reviewed-on: https://go-review.googlesource.com/c/go/+/717700
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Michael Pratt <mpratt@google.com>
Reviewed-by: Meidan Li <limeidan@loongson.cn>
Reviewed-by: sophie zhao <zhaoxiaolin@loongson.cn>
Reviewed-by: Michael Knyszek <mknyszek@google.com>
Diffstat (limited to 'src/cmd/compile')
| -rw-r--r-- | src/cmd/compile/internal/loong64/ssa.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/compile/internal/loong64/ssa.go b/src/cmd/compile/internal/loong64/ssa.go index 5e55428283..84bbf9b394 100644 --- a/src/cmd/compile/internal/loong64/ssa.go +++ b/src/cmd/compile/internal/loong64/ssa.go @@ -692,7 +692,7 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) { // vs // 16 instructions in the straightline code // Might as well use straightline code. - v.Fatalf("ZeroLoop size too small %d", n) + v.Fatalf("MoveLoop size too small %d", n) } // Put iteration count in a register. |
