diff options
| author | Daniel Morsing <daniel.morsing@gmail.com> | 2026-03-17 11:14:29 +0000 |
|---|---|---|
| committer | Gopher Robot <gobot@golang.org> | 2026-03-18 09:16:57 -0700 |
| commit | 9eb830a8076ee5348e76b265ca9be826c67e127e (patch) | |
| tree | 0526159201ece8bf30553ec8b550707f6911beb7 /src/cmd/compile | |
| parent | 99d4927f693d7717561adf62f86aebbb8ba91fc8 (diff) | |
| download | go-9eb830a8076ee5348e76b265ca9be826c67e127e.tar.xz | |
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 <cherryyz@google.com>
Auto-Submit: Daniel Morsing <daniel.morsing@gmail.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Robert Griesemer <gri@google.com>
Diffstat (limited to 'src/cmd/compile')
| -rw-r--r-- | src/cmd/compile/internal/base/flag.go | 1 |
1 files changed, 0 insertions, 1 deletions
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 |
