From: Austin Clements Date: Thu, 14 Apr 2016 19:08:24 +0000 (-0400) Subject: runtime: remove empty 386 archauxv X-Git-Tag: go1.7beta1~641 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=d6b177d1eb7849375e246b97c58406aed7350c86;p=gostls13.git runtime: remove empty 386 archauxv archauxv no longer does anything on 386, so remove it. Change-Id: I94545238e40fa6a6832a7c3b40aedfc6c1f6a97b Reviewed-on: https://go-review.googlesource.com/22063 Reviewed-by: Brad Fitzpatrick --- diff --git a/src/runtime/os_linux_386.go b/src/runtime/os_linux_386.go deleted file mode 100644 index cf031afe45..0000000000 --- a/src/runtime/os_linux_386.go +++ /dev/null @@ -1,12 +0,0 @@ -// Copyright 2009 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package runtime - -const ( - _AT_SYSINFO = 32 -) - -func archauxv(tag, val uintptr) { -} diff --git a/src/runtime/os_linux_noauxv.go b/src/runtime/os_linux_noauxv.go index d26c85bbb6..0b46f594ce 100644 --- a/src/runtime/os_linux_noauxv.go +++ b/src/runtime/os_linux_noauxv.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. -// +build !386,!amd64,!arm,!arm64 +// +build !amd64,!arm,!arm64 package runtime