diff options
Diffstat (limited to 'src/internal/fuzz')
| -rw-r--r-- | src/internal/fuzz/counters_supported.go | 2 | ||||
| -rw-r--r-- | src/internal/fuzz/counters_unsupported.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/internal/fuzz/counters_supported.go b/src/internal/fuzz/counters_supported.go index a71d98d266..7d3b92408d 100644 --- a/src/internal/fuzz/counters_supported.go +++ b/src/internal/fuzz/counters_supported.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 (darwin || linux || windows || freebsd || openbsd) && (amd64 || arm64) +//go:build ((darwin || linux || windows || freebsd || openbsd) && (amd64 || arm64)) || loong64 package fuzz diff --git a/src/internal/fuzz/counters_unsupported.go b/src/internal/fuzz/counters_unsupported.go index 156919ec2e..93b99e5b09 100644 --- a/src/internal/fuzz/counters_unsupported.go +++ b/src/internal/fuzz/counters_unsupported.go @@ -8,7 +8,7 @@ // // If you update this constraint, also update internal/platform.FuzzInstrumented. // -//go:build !((darwin || linux || windows || freebsd || openbsd) && (amd64 || arm64)) +//go:build !((darwin || linux || windows || freebsd || openbsd) && (amd64 || arm64)) && !loong64 package fuzz |
