diff options
author | Austin Seipp <austin@well-typed.com> | 2014-08-20 12:20:41 -0500 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2014-08-20 12:20:41 -0500 |
commit | 7e6078757e3f3b14874a940343b1322b4493bade (patch) | |
tree | 54baea14efe1f87c4eddae160eea7bff782fba15 /rts | |
parent | 08093a94cd4889f98803525ca99aa2b3af57b229 (diff) | |
download | haskell-7e6078757e3f3b14874a940343b1322b4493bade.tar.gz |
rts: detabify/dewhitespace sm/GCUtils.h
Signed-off-by: Austin Seipp <austin@well-typed.com>
Diffstat (limited to 'rts')
-rw-r--r-- | rts/sm/GCUtils.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/rts/sm/GCUtils.h b/rts/sm/GCUtils.h index de5aefca6a..19750b5d0c 100644 --- a/rts/sm/GCUtils.h +++ b/rts/sm/GCUtils.h @@ -6,7 +6,7 @@ * * Documentation on the architecture of the Garbage Collector can be * found in the online commentary: - * + * * http://ghc.haskell.org/trac/ghc/wiki/Commentary/Rts/Storage/GC * * --------------------------------------------------------------------------*/ @@ -54,11 +54,11 @@ recordMutableGen_GC (StgClosure *p, nat gen_no) bd = gct->mut_lists[gen_no]; if (bd->free >= bd->start + BLOCK_SIZE_W) { - bdescr *new_bd; - new_bd = allocBlock_sync(); - new_bd->link = bd; - bd = new_bd; - gct->mut_lists[gen_no] = bd; + bdescr *new_bd; + new_bd = allocBlock_sync(); + new_bd->link = bd; + bd = new_bd; + gct->mut_lists[gen_no] = bd; } *bd->free++ = (StgWord)p; } |