aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/runtime1.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2015-04-17 10:11:44 -0400
committerRuss Cox <rsc@golang.org>2015-04-17 19:29:04 +0000
commit8e5346571c409c0104cd4596557bd5d6241e09ab (patch)
treeaf4a1c54487a3bfb3629c3fb7180e79e7c349d68 /src/runtime/runtime1.go
parent449969a4ac5e9e1e5c41dac645e2b75a8a95fc08 (diff)
downloadgo-8e5346571c409c0104cd4596557bd5d6241e09ab.tar.xz
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>
Diffstat (limited to 'src/runtime/runtime1.go')
-rw-r--r--src/runtime/runtime1.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/runtime/runtime1.go b/src/runtime/runtime1.go
index f8caa0db5d..404d8f0653 100644
--- a/src/runtime/runtime1.go
+++ b/src/runtime/runtime1.go
@@ -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, ",")