aboutsummaryrefslogtreecommitdiff
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
commit58e357ef160da1d89c68130c83e7a383d8480b16 (patch)
tree9716d38af6ccae0043668eb3566244e781064006 /src/runtime/malloc.go
parentae933b04e6da9b72ec1affd9375edfa728b79d20 (diff)
downloadgo-58e357ef160da1d89c68130c83e7a383d8480b16.tar.xz
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://golang.org/cl/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 876a2ddaa7..9b4264f2b3 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.