Skip to content

Commit 9a5a120

Browse files
Jorropogopherbot
authored andcommitted
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>
1 parent 8539691 commit 9a5a120

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/runtime/os_linux_futex32.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5-
//go:build linux && (386 || arm || mips || mipsle || ppc)
5+
//go:build linux && (386 || arm || mips || mipsle)
66

77
package runtime
88

src/runtime/os_linux_futex64.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5-
//go:build linux && !(386 || arm || mips || mipsle || ppc || s390)
5+
//go:build linux && !(386 || arm || mips || mipsle)
66

77
package runtime
88

0 commit comments

Comments
 (0)