aboutsummaryrefslogtreecommitdiff
path: root/test/codegen/arithmetic.go
diff options
context:
space:
mode:
authorKeith Randall <khr@golang.org>2026-03-27 17:14:43 -0700
committerGopher Robot <gobot@golang.org>2026-03-31 11:01:20 -0700
commit1582ad41058df1092eaed9dec4d97b7856953ade (patch)
treebfd7cdaab0ce6827d3460c1cd0076e75792e4858 /test/codegen/arithmetic.go
parentd5b6d583c16f60e4a2f80f8b0fe78abab503f84c (diff)
downloadgo-1582ad41058df1092eaed9dec4d97b7856953ade.tar.xz
test/codegen: fix some unbalanced quotes
Change-Id: I081da8c79f0264118e079af21ff58c511ae37e6c Reviewed-on: https://go-review.googlesource.com/c/go/+/760682 Reviewed-by: Junyang Shao <shaojunyang@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Joel Sing <joel@sing.id.au> Reviewed-by: Keith Randall <khr@google.com> Auto-Submit: Keith Randall <khr@google.com>
Diffstat (limited to 'test/codegen/arithmetic.go')
-rw-r--r--test/codegen/arithmetic.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/codegen/arithmetic.go b/test/codegen/arithmetic.go
index b48975cc13..f8a2fc5400 100644
--- a/test/codegen/arithmetic.go
+++ b/test/codegen/arithmetic.go
@@ -606,7 +606,7 @@ func LenDiv1(a []int) int {
// amd64:"SHRQ [$]10"
// arm64:"LSR [$]10" -"SDIV"
// arm:"SRL [$]10" -".*udiv"
- // ppc64x:"SRD" [$]10"
+ // ppc64x:"SRD [$]10"
return len(a) / 1024
}