summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorAustin Seipp <austin@well-typed.com>2014-08-20 12:46:58 -0500
committerAustin Seipp <austin@well-typed.com>2014-08-20 12:51:31 -0500
commitaa045e59ff32dac4e6cb055b202da23fb306b256 (patch)
tree69a542496edc0540c3b2fb61b9b2892076f436b3 /includes
parentf20c6636b18079769a10e7a93a80e34393673347 (diff)
downloadhaskell-aa045e59ff32dac4e6cb055b202da23fb306b256.tar.gz
[ci skip] includes: detabify/dewhitespace rts/storage/MBlock.h
Signed-off-by: Austin Seipp <austin@well-typed.com>
Diffstat (limited to 'includes')
-rw-r--r--includes/rts/storage/MBlock.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/rts/storage/MBlock.h b/includes/rts/storage/MBlock.h
index 1b02b3cc65..29105cae93 100644
--- a/includes/rts/storage/MBlock.h
+++ b/includes/rts/storage/MBlock.h
@@ -61,9 +61,9 @@ extern SpinLock gc_alloc_block_sync;
extern StgWord8 mblock_map[];
/* On a 32-bit machine a 4KB table is always sufficient */
-# define MBLOCK_MAP_SIZE 4096
-# define MBLOCK_MAP_ENTRY(p) ((StgWord)(p) >> MBLOCK_SHIFT)
-# define HEAP_ALLOCED(p) mblock_map[MBLOCK_MAP_ENTRY(p)]
+# define MBLOCK_MAP_SIZE 4096
+# define MBLOCK_MAP_ENTRY(p) ((StgWord)(p) >> MBLOCK_SHIFT)
+# define HEAP_ALLOCED(p) mblock_map[MBLOCK_MAP_ENTRY(p)]
# define HEAP_ALLOCED_GC(p) HEAP_ALLOCED(p)
/* -----------------------------------------------------------------------------