We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dec1bfa commit 3ecd6c2Copy full SHA for 3ecd6c2
src/cmd/link/internal/ld/data.go
@@ -3271,8 +3271,7 @@ func compressSyms(ctxt *Link, syms []loader.Sym) []byte {
3271
if err := z.Close(); err != nil {
3272
log.Fatalf("compression failed: %s", err)
3273
}
3274
- // TODO: Re-enable check when https://github.com/golang/go/issues/76022 is resolved.
3275
- if false && int64(buf.Len()) >= total {
+ if int64(buf.Len()) >= total {
3276
// Compression didn't save any space.
3277
return nil
3278
0 commit comments