diff options
author | Ben Gamari <ben@smart-cactus.org> | 2015-12-07 14:08:28 +0100 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2015-12-07 14:08:28 +0100 |
commit | 04e1c27943503f2e12b009b91f7bef195766f6d0 (patch) | |
tree | 8253eb5e8367557027cbf5b97e2d0d32850c866c /rts/sm/BlockAlloc.c | |
parent | 151c4b0b6caff2e1af764699c54302933c628861 (diff) | |
download | haskell-04e1c27943503f2e12b009b91f7bef195766f6d0.tar.gz |
rts: One more Clang-unfriendly CPP usage
Diffstat (limited to 'rts/sm/BlockAlloc.c')
-rw-r--r-- | rts/sm/BlockAlloc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rts/sm/BlockAlloc.c b/rts/sm/BlockAlloc.c index e721fb13b6..a633726935 100644 --- a/rts/sm/BlockAlloc.c +++ b/rts/sm/BlockAlloc.c @@ -835,9 +835,9 @@ checkFreeListSanity(void) // make sure we're fully coalesced if (bd->link != NULL) { - ASSERT (MBLOCK_ROUND_DOWN(bd->link) != - (StgWord8*)MBLOCK_ROUND_DOWN(bd) + - BLOCKS_TO_MBLOCKS(bd->blocks) * MBLOCK_SIZE); + ASSERT(MBLOCK_ROUND_DOWN(bd->link) != + (StgWord8*)MBLOCK_ROUND_DOWN(bd) + + BLOCKS_TO_MBLOCKS(bd->blocks) * MBLOCK_SIZE); } } } |