From 9eb830a8076ee5348e76b265ca9be826c67e127e Mon Sep 17 00:00:00 2001 From: Daniel Morsing Date: Tue, 17 Mar 2026 11:14:29 +0000 Subject: cmd/compile: allow halt flag to run concurrently During the investigation for #78081, I found it helpful to use the -h flag to get a compiler core dump. I don't see any reason why it would need to clamp concurrency down. We have pretty good support for not interleaving log lines and if people really need it, they can always pass -c=1. Change-Id: Ic6425fc0da63e7ac42e0821f3d40ec4c6a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/756321 Reviewed-by: Cherry Mui Auto-Submit: Daniel Morsing LUCI-TryBot-Result: Go LUCI Reviewed-by: Robert Griesemer --- src/cmd/compile/internal/base/flag.go | 1 - 1 file changed, 1 deletion(-) (limited to 'src/cmd') diff --git a/src/cmd/compile/internal/base/flag.go b/src/cmd/compile/internal/base/flag.go index 6898523ff6..c8f1b2db30 100644 --- a/src/cmd/compile/internal/base/flag.go +++ b/src/cmd/compile/internal/base/flag.go @@ -475,7 +475,6 @@ func concurrentFlagOk() bool { Flag.E == 0 && Flag.K == 0 && Flag.L == 0 && - Flag.LowerH == 0 && Flag.LowerJ == 0 && Flag.LowerM == 0 && Flag.LowerR == 0 -- cgit v1.3-5-g9baa