summaryrefslogtreecommitdiff
path: root/src/cmd/compile/internal/gc/pprof.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/compile/internal/gc/pprof.go')
-rw-r--r--src/cmd/compile/internal/gc/pprof.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/cmd/compile/internal/gc/pprof.go b/src/cmd/compile/internal/gc/pprof.go
deleted file mode 100644
index 5f9b030621..0000000000
--- a/src/cmd/compile/internal/gc/pprof.go
+++ /dev/null
@@ -1,14 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-//go:build go1.8
-// +build go1.8
-
-package gc
-
-import "runtime"
-
-func startMutexProfiling() {
- runtime.SetMutexProfileFraction(1)
-}