aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/runtime1.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2015-05-07 15:41:01 -0400
committerRuss Cox <rsc@golang.org>2015-05-07 21:08:42 +0000
commit0211d7d7b06216c7c3664ae6ef95c088d5699b8d (patch)
treebbef94cb20f34544b6dbab666ca87bff15423198 /src/runtime/runtime1.go
parent96265610307eab2b160a271169632b52ad7cc455 (diff)
downloadgo-0211d7d7b06216c7c3664ae6ef95c088d5699b8d.tar.gz
go-0211d7d7b06216c7c3664ae6ef95c088d5699b8d.zip
runtime: turn off checkmark by default
Change-Id: Ic8cb8b1ed8715d6d5a53ec3cac385c0e93883514 Reviewed-on: https://go-review.googlesource.com/9825 Reviewed-by: Rick Hudson <rlh@golang.org> Reviewed-by: Austin Clements <austin@google.com>
Diffstat (limited to 'src/runtime/runtime1.go')
-rw-r--r--src/runtime/runtime1.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/runtime/runtime1.go b/src/runtime/runtime1.go
index 3bf0b95f6d..ea3883018b 100644
--- a/src/runtime/runtime1.go
+++ b/src/runtime/runtime1.go
@@ -336,7 +336,6 @@ var dbgvars = []dbgVar{
}
func parsedebugvars() {
- debug.gccheckmark=1
for p := gogetenv("GODEBUG"); p != ""; {
field := ""
i := index(p, ",")