]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: remove comment that leaked into CL 153710043
authorRuss Cox <rsc@golang.org>
Fri, 17 Oct 2014 15:03:55 +0000 (11:03 -0400)
committerRuss Cox <rsc@golang.org>
Fri, 17 Oct 2014 15:03:55 +0000 (11:03 -0400)
This doesn't actually do anything. Maybe it will some day,
but maybe not.

TBR=r
CC=golang-codereviews
https://golang.org/cl/155490043

src/runtime/malloc.go

index 876a2ddaa797104c310990a70e5c5c3b17ddf064..9b4264f2b3daccedeb5ba3eeef3578b90ab24a77 100644 (file)
@@ -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.