From abc56fd1a0505d4fc27943cbcda81ac783fb2d2f Mon Sep 17 00:00:00 2001 From: cuishuang Date: Tue, 15 Jun 2021 10:11:06 +0000 Subject: [PATCH] internal/bytealg: remove duplicate go:build line Change-Id: I6b71bf468b9544820829f02e320673f5edd785fa GitHub-Last-Rev: 8082ac5fba18e630dd2a21771837e6f0b1f9853f GitHub-Pull-Request: golang/go#46683 Reviewed-on: https://go-review.googlesource.com/c/go/+/326730 Reviewed-by: Ian Lance Taylor Trust: Tobias Klauser --- src/internal/bytealg/index_generic.go | 1 - src/internal/bytealg/index_native.go | 1 - 2 files changed, 2 deletions(-) diff --git a/src/internal/bytealg/index_generic.go b/src/internal/bytealg/index_generic.go index 287bdba4c680a..0a6eb90d2d929 100644 --- a/src/internal/bytealg/index_generic.go +++ b/src/internal/bytealg/index_generic.go @@ -2,7 +2,6 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// go:build !amd64 && !arm64 && !s390x && !ppc64le && !ppc64 //go:build !amd64 && !arm64 && !s390x && !ppc64le && !ppc64 // +build !amd64,!arm64,!s390x,!ppc64le,!ppc64 diff --git a/src/internal/bytealg/index_native.go b/src/internal/bytealg/index_native.go index 75aff4b3cb016..9547a5d8e2aa3 100644 --- a/src/internal/bytealg/index_native.go +++ b/src/internal/bytealg/index_native.go @@ -2,7 +2,6 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// go:build amd64 || arm64 || s390x || ppc64le || ppc64 //go:build amd64 || arm64 || s390x || ppc64le || ppc64 // +build amd64 arm64 s390x ppc64le ppc64