From: Jorropo Date: Fri, 17 Oct 2025 17:51:53 +0000 (+0200) Subject: runtime: clean dead architectures from go:build constraint X-Git-Tag: go1.26rc1~556 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=9a5a1202f4c4d5a7048b149b65c3e5b82a2de9aa;p=gostls13.git runtime: clean dead architectures from go:build constraint I've didn't caught theses while reviewing CL 701615. Change-Id: I721978c173a255eb6d7c3e43dea2b903a9fd016d Reviewed-on: https://go-review.googlesource.com/c/go/+/712740 LUCI-TryBot-Result: Go LUCI Auto-Submit: Jorropo Reviewed-by: Keith Randall Reviewed-by: Keith Randall Reviewed-by: David Chase --- diff --git a/src/runtime/os_linux_futex32.go b/src/runtime/os_linux_futex32.go index fdf99e5669..dbbd86cb39 100644 --- a/src/runtime/os_linux_futex32.go +++ b/src/runtime/os_linux_futex32.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -//go:build linux && (386 || arm || mips || mipsle || ppc) +//go:build linux && (386 || arm || mips || mipsle) package runtime diff --git a/src/runtime/os_linux_futex64.go b/src/runtime/os_linux_futex64.go index 487d0e0397..ce0b08c7ba 100644 --- a/src/runtime/os_linux_futex64.go +++ b/src/runtime/os_linux_futex64.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -//go:build linux && !(386 || arm || mips || mipsle || ppc || s390) +//go:build linux && !(386 || arm || mips || mipsle) package runtime