aboutsummaryrefslogtreecommitdiff
path: root/src/runtime
diff options
context:
space:
mode:
authorJorropo <jorropo.pgm@gmail.com>2025-10-17 19:51:53 +0200
committerGopher Robot <gobot@golang.org>2025-10-21 07:03:33 -0700
commit9a5a1202f4c4d5a7048b149b65c3e5b82a2de9aa (patch)
treede7ea33d89b24a773b1014d89c3fe8e2c8dad7b7 /src/runtime
parent8539691d0c0c04be291e18972316fa4b6d02bbcf (diff)
downloadgo-9a5a1202f4c4d5a7048b149b65c3e5b82a2de9aa.tar.xz
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 <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Jorropo <jorropo.pgm@gmail.com> Reviewed-by: Keith Randall <khr@google.com> Reviewed-by: Keith Randall <khr@golang.org> Reviewed-by: David Chase <drchase@google.com>
Diffstat (limited to 'src/runtime')
-rw-r--r--src/runtime/os_linux_futex32.go2
-rw-r--r--src/runtime/os_linux_futex64.go2
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