X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=blobdiff_plain;f=rts%2Fsm%2FStorage.c;h=f38842b59e50b9af48b908150c3eb3e03d95c93c;hp=9dea30e193fc1fb3e4ee88ce9a10840783585e8d;hb=9c0e08c67eee8918336c1b8dce162343a312057c;hpb=304e7fb703e7afddc1ef9be6aab6505e36b63b06 diff --git a/rts/sm/Storage.c b/rts/sm/Storage.c index 9dea30e..f38842b 100644 --- a/rts/sm/Storage.c +++ b/rts/sm/Storage.c @@ -1466,7 +1466,7 @@ checkSanity( void ) if (RtsFlags.GcFlags.generations == 1) { checkHeap(g0s0->blocks); - checkChain(g0s0->large_objects); + checkLargeObjects(g0s0->large_objects); } else { for (g = 0; g < RtsFlags.GcFlags.generations; g++) { @@ -1477,7 +1477,7 @@ checkSanity( void ) ASSERT(countBlocks(generations[g].steps[s].large_objects) == generations[g].steps[s].n_large_blocks); checkHeap(generations[g].steps[s].blocks); - checkChain(generations[g].steps[s].large_objects); + checkLargeObjects(generations[g].steps[s].large_objects); } }