From 9a5a1202f4c4d5a7048b149b65c3e5b82a2de9aa Mon Sep 17 00:00:00 2001 From: Jorropo Date: Fri, 17 Oct 2025 19:51:53 +0200 Subject: [PATCH] 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 --- src/runtime/os_linux_futex32.go | 2 +- src/runtime/os_linux_futex64.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 -- 2.52.0