From: Russ Cox Date: Fri, 3 Apr 2009 00:56:23 +0000 (-0700) Subject: turn gc of unused data/code back on in loaders. X-Git-Tag: weekly.2009-11-06~1905 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=8d8225d529f6c3cff1f8bfa7ff302d5a4a8dbdd8;p=gostls13.git turn gc of unused data/code back on in loaders. turned it off while debugging 8 runtime problem, checked in the change accidentally. R=r DELTA=4 (0 added, 0 deleted, 4 changed) OCL=27040 CL=27046 --- diff --git a/src/cmd/ld/go.c b/src/cmd/ld/go.c index e8366e8252..e1b7acdad2 100644 --- a/src/cmd/ld/go.c +++ b/src/cmd/ld/go.c @@ -581,7 +581,7 @@ deadcode(void) mark(lookup(INITENTRY, 0)); mark(lookup("sys·morestack", 0)); -// sweeplist(&firstp, &lastp); -// sweeplist(&datap, &edatap); + sweeplist(&firstp, &lastp); + sweeplist(&datap, &edatap); }