1
0
mirror of https://github.com/golang/go synced 2024-11-18 19:24:39 -07:00

runtime: leave gccheckmark testing off by default

It's not helping anymore, and it's fooling people who try to
understand performance (like me).

Change-Id: I133a644acae0ddf1bfa17c654cdc01e2089da963
Reviewed-on: https://go-review.googlesource.com/9018
Reviewed-by: Austin Clements <austin@google.com>
This commit is contained in:
Russ Cox 2015-04-17 10:11:44 -04:00
parent 449969a4ac
commit 8e5346571c

View File

@ -334,9 +334,6 @@ var dbgvars = []dbgVar{
}
func parsedebugvars() {
// gccheckmark is enabled by default for the 1.5 dev cycle
debug.gccheckmark = 1
for p := gogetenv("GODEBUG"); p != ""; {
field := ""
i := index(p, ",")