1
0
mirror of https://github.com/golang/go synced 2024-11-23 11:50:09 -07:00

runtime: remove outdated comment and related indentation

R=golang-dev, iant
CC=golang-dev
https://golang.org/cl/39810043
This commit is contained in:
Carl Shapiro 2013-12-10 11:17:43 -08:00
parent ddbad5ef20
commit c69402d82b

View File

@ -409,11 +409,6 @@ flushptrbuf(Scanbuf *sbuf)
runtime·throw("ptrbuf has to be smaller than WorkBuf");
}
// TODO(atom): This block is a branch of an if-then-else statement.
// The single-threaded branch may be added in a next CL.
{
// Multi-threaded version.
while(ptrbuf < ptrbuf_end) {
obj = ptrbuf->p;
ti = ptrbuf->ti;
@ -534,7 +529,6 @@ flushptrbuf(Scanbuf *sbuf)
nobj = wbuf->nobj;
wp = wbuf->obj + nobj;
}
}
sbuf->wp = wp;
sbuf->wbuf = wbuf;