]> Cypherpunks repositories - gostls13.git/commitdiff
turn gc of unused data/code back on in loaders.
authorRuss Cox <rsc@golang.org>
Fri, 3 Apr 2009 00:56:23 +0000 (17:56 -0700)
committerRuss Cox <rsc@golang.org>
Fri, 3 Apr 2009 00:56:23 +0000 (17:56 -0700)
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

src/cmd/ld/go.c

index e8366e825257d9a4c9ebd0cf8edf45e678974c72..e1b7acdad2e5fde525c222d9f2e72383ccba1a45 100644 (file)
@@ -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);
 }