aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/timestub2.go
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2021-04-28 13:06:55 -0700
committerIan Lance Taylor <iant@golang.org>2021-04-29 14:16:19 +0000
commitb15372f39bb555196053ddac5e86931a1502c86c (patch)
treee19b1e56fa4cdc2c6dd2628eaab9430702a8d33e /src/runtime/timestub2.go
parent862ddb37b4e24bcb89f060d50325c8f863ee99bc (diff)
downloadgo-b15372f39bb555196053ddac5e86931a1502c86c.tar.gz
go-b15372f39bb555196053ddac5e86931a1502c86c.zip
runtime: remove linux-amd64 walltime function
It's never called. Change-Id: I8956743b21301816b5f37a9b34e3f50ef7b2e70a Reviewed-on: https://go-review.googlesource.com/c/go/+/314771 Trust: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Michael Knyszek <mknyszek@google.com>
Diffstat (limited to 'src/runtime/timestub2.go')
-rw-r--r--src/runtime/timestub2.go10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/runtime/timestub2.go b/src/runtime/timestub2.go
index d66579440e..800a2a94e0 100644
--- a/src/runtime/timestub2.go
+++ b/src/runtime/timestub2.go
@@ -2,8 +2,14 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-//go:build !aix && !darwin && !freebsd && !openbsd && !solaris && !windows
-// +build !aix,!darwin,!freebsd,!openbsd,!solaris,!windows
+//go:build !aix && !darwin && !freebsd && !openbsd && !solaris && !windows && !(linux && amd64)
+// +build !aix
+// +build !darwin
+// +build !freebsd
+// +build !openbsd
+// +build !solaris
+// +build !windows
+// +build !linux !amd64
package runtime