diff options
author | Ben Gamari <ben@smart-cactus.org> | 2022-12-06 15:53:27 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2023-03-08 15:02:31 -0500 |
commit | 78746906d133765a9a4219eb34ed01e78f31344c (patch) | |
tree | 2d74a2098fae7b43f81cc72fb6317b6d22a9973a | |
parent | ce22a3e2f2e8168f80d77807d79214e1cfbccb44 (diff) | |
download | haskell-78746906d133765a9a4219eb34ed01e78f31344c.tar.gz |
rts: Reenable assertion
-rw-r--r-- | rts/sm/Sanity.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/sm/Sanity.c b/rts/sm/Sanity.c index d0a6403555..e360586222 100644 --- a/rts/sm/Sanity.c +++ b/rts/sm/Sanity.c @@ -926,7 +926,7 @@ static void checkGeneration (generation *gen, uint32_t n; gen_workspace *ws; - //ASSERT(countBlocks(gen->blocks) == gen->n_blocks); + ASSERT(countBlocks(gen->blocks) == gen->n_blocks); ASSERT(countBlocks(gen->large_objects) == gen->n_large_blocks); #if defined(THREADED_RTS) |