]> Cypherpunks repositories - gostls13.git/commit
[dev.simd] cmd/compile: don't treat devel compiler as a released compiler
authorCherry Mui <cherryyz@google.com>
Fri, 20 Jun 2025 16:02:18 +0000 (12:02 -0400)
committerCherry Mui <cherryyz@google.com>
Fri, 20 Jun 2025 18:51:29 +0000 (11:51 -0700)
commit4150372a5d2c3b70591efe1ce208f0a92747f1dc
tree3ef309807ff599a2deabbf9b7d4d3cae1b132169
parent1b87d52549677a1ab3dfc05bb00eb568d81f6a5c
[dev.simd] cmd/compile: don't treat devel compiler as a released compiler

The compiler has a logic to print different messages on internal
compiler error depending on whether this is a released version of
Go. It hides the panic stack trace if it is a released version. It
does this by checking the version and see if it has a "go" prefix.
This includes all the released versions. However, for a non-
released build, if there is no explicit version set, cmd/dist now
sets the toolchain version as go1.X-devel_XXX, which makes it be
treated as a released compiler, and causes the stack trace to be
hidden. Change the logic to not match a devel compiler as a
released compiler.

Change-Id: I5d3b2101527212f825b6e4000b36030c4f83870b
Reviewed-on: https://go-review.googlesource.com/c/go/+/682975
Reviewed-by: David Chase <drchase@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
src/cmd/compile/internal/base/print.go