From dc1e255104f3fee2589da61b7fa80627beb885f4 Mon Sep 17 00:00:00 2001 From: limeidan Date: Thu, 13 Mar 2025 19:51:03 +0800 Subject: runtime, internal/fuzz: add comparison tracing for libFuzzer on loong64 Change-Id: I212330962453139fa353db29928786b64c9ff063 Reviewed-on: https://go-review.googlesource.com/c/go/+/667455 Reviewed-by: abner chenc Reviewed-by: Junyang Shao LUCI-TryBot-Result: Go LUCI Reviewed-by: Dmitri Shuralyov --- src/internal/fuzz/counters_supported.go | 2 +- src/internal/fuzz/counters_unsupported.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/internal/fuzz') 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 -- cgit v1.3-5-g9baa