From: Russ Cox Date: Fri, 17 Oct 2014 15:03:55 +0000 (-0400) Subject: runtime: remove comment that leaked into CL 153710043 X-Git-Tag: go1.4beta1~96 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=58e357ef160da1d89c68130c83e7a383d8480b16;p=gostls13.git 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 --- 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.