summaryrefslogtreecommitdiff
path: root/src/runtime/malloc.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2014-10-17 11:03:55 -0400
committerRuss Cox <rsc@golang.org>2014-10-17 11:03:55 -0400
commit2b6a5384ea9d474cb6ff7ac7b19db00e03f1f0f3 (patch)
tree2597dfc13fcc8d385c0ce4de7875cf5c66a24896 /src/runtime/malloc.go
parent93686de5a14f0678ab60faff27d1c61ac663c8d5 (diff)
downloadgo-2b6a5384ea9d474cb6ff7ac7b19db00e03f1f0f3.tar.gz
runtime: remove comment that leaked into CL 153710043
This doesn't actually do anything. Maybe it will some day, but maybe not. TBR=r CC=golang-codereviews https://codereview.appspot.com/155490043
Diffstat (limited to 'src/runtime/malloc.go')
-rw-r--r--src/runtime/malloc.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/runtime/malloc.go b/src/runtime/malloc.go
index 876a2ddaa..9b4264f2b 100644
--- a/src/runtime/malloc.go
+++ b/src/runtime/malloc.go
@@ -40,8 +40,6 @@ type pageID uintptr
// base address for all 0-byte allocations
var zerobase uintptr
-//go:nowritebarrier
-
// Allocate an object of size bytes.
// Small objects are allocated from the per-P cache's free lists.
// Large objects (> 32 kB) are allocated straight from the heap.