From 0bf96ecea2290360a67c3058d7840315969df71a Mon Sep 17 00:00:00 2001 From: Sun Yimin Date: Thu, 1 Jun 2023 11:12:23 +0800 Subject: [PATCH] fix compile issue --- internal/bigmod/nat_noasm.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/bigmod/nat_noasm.go b/internal/bigmod/nat_noasm.go index 331bcee..1b4000b 100644 --- a/internal/bigmod/nat_noasm.go +++ b/internal/bigmod/nat_noasm.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. -//go:build purego || !(386 || amd64 || arm || arm64 || ppc64 || ppc64le || s390x) -// +build !386,!amd64,!arm,!arm64,!ppc64,!ppc64le,!s390x purego +//go:build purego || (!386 && !amd64 && !arm && !arm64 && !ppc64 && !ppc64le && !s390x) +// +build purego !386,!amd64,!arm,!arm64,!ppc64,!ppc64le,!s390x package bigmod