Skip to content
Snippets Groups Projects
Commit c70d039e authored by Ömer Sinan Ağacan's avatar Ömer Sinan Ağacan Committed by Marge Bot
Browse files

Remove unused RTS function 'unmark'

parent f071576c
No related branches found
No related tags found
No related merge requests found
......@@ -25,16 +25,6 @@ mark(StgPtr p, bdescr *bd)
*bitmap_word |= bit_mask;
}
INLINE_HEADER void
unmark(StgPtr p, bdescr *bd)
{
uint32_t offset_within_block = p - bd->start; // in words
StgPtr bitmap_word = (StgPtr)bd->u.bitmap +
(offset_within_block / BITS_IN(W_));
StgWord bit_mask = (StgWord)1 << (offset_within_block & (BITS_IN(W_) - 1));
*bitmap_word &= ~bit_mask;
}
INLINE_HEADER StgWord
is_marked(StgPtr p, bdescr *bd)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment