From: Cherry Mui Date: Fri, 20 Jun 2025 20:03:01 +0000 (-0400) Subject: [dev.simd] sync: correct the type of runtime_StoreReluintptr X-Git-Tag: go1.26rc1~147^2~225 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=a8669c78f5;p=gostls13.git [dev.simd] sync: correct the type of runtime_StoreReluintptr runtime_StoreReluintptr linknames to internal/runtime/atomic.StoreReluintptr, which does not have a result. Change-Id: I468cce82985f391c221768188a5eaff43cbcd037 Reviewed-on: https://go-review.googlesource.com/c/go/+/683095 TryBot-Bypass: Cherry Mui Reviewed-by: David Chase --- diff --git a/src/sync/pool.go b/src/sync/pool.go index 0fa8f8cdaa..f9a8405b79 100644 --- a/src/sync/pool.go +++ b/src/sync/pool.go @@ -315,4 +315,4 @@ func runtime_procUnpin() func runtime_LoadAcquintptr(ptr *uintptr) uintptr //go:linkname runtime_StoreReluintptr internal/runtime/atomic.StoreReluintptr -func runtime_StoreReluintptr(ptr *uintptr, val uintptr) uintptr +func runtime_StoreReluintptr(ptr *uintptr, val uintptr)