From 71c84d4b4149bebc2abcc495ef744e1a010a18e7 Mon Sep 17 00:00:00 2001 From: Joel Sing Date: Fri, 3 Mar 2023 01:23:59 +1100 Subject: [PATCH] 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 Reviewed-by: Ian Lance Taylor Run-TryBot: Joel Sing Reviewed-by: Carlos Amedee Reviewed-by: Lynn Boger --- src/internal/bytealg/index_ppc64x.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.50.0