aboutsummaryrefslogtreecommitdiff
path: root/test/codegen/mathbits.go
diff options
context:
space:
mode:
authorCherry Mui <cherryyz@google.com>2025-10-04 11:32:33 -0400
committerCherry Mui <cherryyz@google.com>2025-10-06 14:51:23 -0700
commit1d62e92567a858b18f4e7e0c24e071c039dd3edf (patch)
treef9ef8940075817f3252e397136d0855cb7ed4982 /test/codegen/mathbits.go
parent4fca79833fcdd0dc19bb0feba8715a0def3d07be (diff)
downloadgo-1d62e92567a858b18f4e7e0c24e071c039dd3edf.tar.xz
test/codegen: make sure assignment results are used.
Some tests make assignments to an argument without reading it. With CL 708865, they are treated as dead stores and are removed. Make sure the results are used. Fixes #75745. Fixes #75746. Change-Id: I05580beb1006505ec1550e5fa245b54dcefd10b9 Reviewed-on: https://go-review.googlesource.com/c/go/+/708916 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Keith Randall <khr@google.com> Reviewed-by: Keith Randall <khr@golang.org>
Diffstat (limited to 'test/codegen/mathbits.go')
-rw-r--r--test/codegen/mathbits.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/codegen/mathbits.go b/test/codegen/mathbits.go
index ba5387d2c3..f8fa374c0a 100644
--- a/test/codegen/mathbits.go
+++ b/test/codegen/mathbits.go
@@ -731,7 +731,7 @@ func Add64MPanicOnOverflowGT(a, b [2]uint64) [2]uint64 {
//
// This is what happened on PPC64 when compiling
// crypto/internal/edwards25519/field.feMulGeneric.
-func Add64MultipleChains(a, b, c, d [2]uint64) {
+func Add64MultipleChains(a, b, c, d [2]uint64) [2]uint64 {
var cx, d1, d2 uint64
a1, a2 := a[0], a[1]
b1, b2 := b[0], b[1]
@@ -748,6 +748,7 @@ func Add64MultipleChains(a, b, c, d [2]uint64) {
d2, _ = bits.Add64(c2, d2, cx)
d[0] = d1
d[1] = d2
+ return d
}
// --------------- //