diff options
author | Marco TĂșlio Gontijo e Silva <marcot@marcot.eti.br> | 2010-07-18 22:55:26 +0000 |
---|---|---|
committer | Marco TĂșlio Gontijo e Silva <marcot@marcot.eti.br> | 2010-07-18 22:55:26 +0000 |
commit | eff182c31745b958d627d4feb1e53c09298c6836 (patch) | |
tree | 31aa266ea6e532071e2c729c8c42ce9283a67bc3 /rts/sm/Sweep.c | |
parent | 8d1cbbdf6d4e40d116e3c4661ef5a245f23f9511 (diff) | |
download | haskell-eff182c31745b958d627d4feb1e53c09298c6836.tar.gz |
Don't check for swept blocks in -DS.
The checkHeap function assumed the allocated part of the block contained only
alive objects and slops. This was not true for blocks that are collected using
mark sweep. The code in this patch skip the test for this kind of blocks.
Diffstat (limited to 'rts/sm/Sweep.c')
-rw-r--r-- | rts/sm/Sweep.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/rts/sm/Sweep.c b/rts/sm/Sweep.c index acbf6f8ca3..81a41182b1 100644 --- a/rts/sm/Sweep.c +++ b/rts/sm/Sweep.c @@ -67,6 +67,8 @@ sweep(generation *gen) fragd++; bd->flags |= BF_FRAGMENTED; } + + bd->flags |= BF_SWEPT; } } |