]> Cypherpunks repositories - gostls13.git/commitdiff
runtime, internal/fuzz: optimize build tag combination on loong64
authorGuoqi Chen <chenguoqi@loongson.cn>
Fri, 25 Apr 2025 11:59:01 +0000 (19:59 +0800)
committerabner chenc <chenguoqi@loongson.cn>
Wed, 21 May 2025 07:07:41 +0000 (00:07 -0700)
Change-Id: I971b789beb08e0c6b11169fd5547a8d4ab74fab5
Reviewed-on: https://go-review.googlesource.com/c/go/+/668155
Reviewed-by: Junyang Shao <shaojunyang@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Jorropo <jorropo.pgm@gmail.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
src/internal/fuzz/counters_supported.go
src/internal/fuzz/counters_unsupported.go

index 7d3b92408d5d9e5a65198e7c331107eb7406529c..a877239186b348190c3f24fe903a6c022173a2f1 100644 (file)
@@ -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)) || loong64
+//go:build (darwin || linux || windows || freebsd || openbsd) && (amd64 || arm64 || loong64)
 
 package fuzz
 
index 93b99e5b0989c6da22eb8b0cb7ae01e395e3e874..af2b56cdd857e8b7ca9ed247d521e1346ec64c73 100644 (file)
@@ -8,7 +8,7 @@
 //
 // If you update this constraint, also update internal/platform.FuzzInstrumented.
 //
-//go:build !((darwin || linux || windows || freebsd || openbsd) && (amd64 || arm64)) && !loong64
+//go:build !((darwin || linux || windows || freebsd || openbsd) && (amd64 || arm64 || loong64))
 
 package fuzz