diff options
| author | Russ Cox <rsc@golang.org> | 2021-02-19 18:35:10 -0500 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2021-02-20 03:54:50 +0000 |
| commit | d4b26382342c98a95b85140b2863bc30c48edd68 (patch) | |
| tree | 6ef0d77cc69a5a99a90fb528d083f6aca7448667 /src/runtime/export_debug_test.go | |
| parent | 0625460f79eed41039939f957baceaff5e269672 (diff) | |
| download | go-d4b26382342c98a95b85140b2863bc30c48edd68.tar.xz | |
all: go fmt std cmd (but revert vendor)
Make all our package sources use Go 1.17 gofmt format
(adding //go:build lines).
Part of //go:build change (#41184).
See https://golang.org/design/draft-gobuild
Change-Id: Ia0534360e4957e58cd9a18429c39d0e32a6addb4
Reviewed-on: https://go-review.googlesource.com/c/go/+/294430
Trust: Russ Cox <rsc@golang.org>
Run-TryBot: Russ Cox <rsc@golang.org>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Jason A. Donenfeld <Jason@zx2c4.com>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'src/runtime/export_debug_test.go')
| -rw-r--r-- | src/runtime/export_debug_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/runtime/export_debug_test.go b/src/runtime/export_debug_test.go index ed4242ef24..18ccecd5cd 100644 --- a/src/runtime/export_debug_test.go +++ b/src/runtime/export_debug_test.go @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// +build amd64 -// +build linux +//go:build amd64 && linux +// +build amd64,linux package runtime |
