aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/runtime1.go
diff options
context:
space:
mode:
authorAustin Clements <austin@google.com>2017-02-09 11:36:25 -0500
committerAustin Clements <austin@google.com>2017-02-14 15:52:49 +0000
commit7aeb915d6b1f90657e67e4722d13624b7109b8d5 (patch)
treefcfec044df4e0b306f6efb3a88d8c26d08facefd /src/runtime/runtime1.go
parenta610957f2e48c5b917126b1d0b5f930f05ca8841 (diff)
downloadgo-7aeb915d6b1f90657e67e4722d13624b7109b8d5.tar.gz
go-7aeb915d6b1f90657e67e4722d13624b7109b8d5.zip
runtime: remove unused debug.wbshadow
The wbshadow implementation was removed a year and a half ago in 1635ab7dfe, but the GODEBUG setting remained. Remove the GODEBUG setting since it doesn't do anything. Change-Id: I19cde324a79472aff60acb5cc9f7d4aa86c0c0ed Reviewed-on: https://go-review.googlesource.com/36618 Run-TryBot: Austin Clements <austin@google.com> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> Reviewed-by: Rick Hudson <rlh@golang.org>
Diffstat (limited to 'src/runtime/runtime1.go')
-rw-r--r--src/runtime/runtime1.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/runtime/runtime1.go b/src/runtime/runtime1.go
index 40c0e8579c..d822480846 100644
--- a/src/runtime/runtime1.go
+++ b/src/runtime/runtime1.go
@@ -329,7 +329,6 @@ var debug struct {
scavenge int32
scheddetail int32
schedtrace int32
- wbshadow int32
}
var dbgvars = []dbgVar{
@@ -349,7 +348,6 @@ var dbgvars = []dbgVar{
{"scavenge", &debug.scavenge},
{"scheddetail", &debug.scheddetail},
{"schedtrace", &debug.schedtrace},
- {"wbshadow", &debug.wbshadow},
}
func parsedebugvars() {