]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: clean dead architectures from go:build constraint
authorJorropo <jorropo.pgm@gmail.com>
Fri, 17 Oct 2025 17:51:53 +0000 (19:51 +0200)
committerGopher Robot <gobot@golang.org>
Tue, 21 Oct 2025 14:03:33 +0000 (07:03 -0700)
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>
src/runtime/os_linux_futex32.go
src/runtime/os_linux_futex64.go

index fdf99e56693d0dde3a9daa15e129dc7dd351a705..dbbd86cb3937e9b03a1588c86da8ecb714cfa6d5 100644 (file)
@@ -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
 
index 487d0e03978b328f46382f687047b49908b3f1fd..ce0b08c7ba74059fe964ab6e275433c34e491e02 100644 (file)
@@ -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