0
1
mirror of https://github.com/golang/go synced 2025-08-15 02:26:40 +00:00

[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 <cherryyz@google.com>
Reviewed-by: David Chase <drchase@google.com>
This commit is contained in:
Cherry Mui
2025-06-20 16:03:01 -04:00
parent 7c6ac35275
commit a8669c78f5

View File

@@ -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)