diff options
| author | Joel Sing <joel@sing.id.au> | 2023-03-03 01:23:59 +1100 |
|---|---|---|
| committer | Joel Sing <joel@sing.id.au> | 2023-03-09 05:34:46 +0000 |
| commit | 71c84d4b4149bebc2abcc495ef744e1a010a18e7 (patch) | |
| tree | e752effe87fe7c8c22418b1830febf0dcfd601c6 /src | |
| parent | fc45eb388d3693e35b1aa97cb553d2a5083c8b2f (diff) | |
| download | go-71c84d4b4149bebc2abcc495ef744e1a010a18e7.tar.xz | |
internal/bytealg: remove aix and linux build tags from ppc64 index code
This code is generic to ppc64/ppc64le - there is no need to limit it to
aix or linux.
Updates #56001
Change-Id: I613964a90f9c5ca637720219a0260d65427f4be0
Reviewed-on: https://go-review.googlesource.com/c/go/+/473697
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@google.com>
Run-TryBot: Joel Sing <joel@sing.id.au>
Reviewed-by: Carlos Amedee <carlos@golang.org>
Reviewed-by: Lynn Boger <laboger@linux.vnet.ibm.com>
Diffstat (limited to 'src')
| -rw-r--r-- | src/internal/bytealg/index_ppc64x.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/internal/bytealg/index_ppc64x.go b/src/internal/bytealg/index_ppc64x.go index ab3cbe5e96..720d51748d 100644 --- a/src/internal/bytealg/index_ppc64x.go +++ b/src/internal/bytealg/index_ppc64x.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. -//go:build (aix || linux) && (ppc64 || ppc64le) +//go:build ppc64 || ppc64le package bytealg |
