fix warning
authorSimon Marlow <marlowsd@gmail.com>
Mon, 31 Jan 2011 13:59:51 +0000 (13:59 +0000)
committerSimon Marlow <marlowsd@gmail.com>
Mon, 31 Jan 2011 13:59:51 +0000 (13:59 +0000)
rts/sm/MBlock.c

index f5b61c6..1801086 100644 (file)
@@ -265,13 +265,12 @@ freeMBlocks(void *addr, nat n)
 void
 freeAllMBlocks(void)
 {
-    nat n;
-
     debugTrace(DEBUG_gc, "freeing all megablocks");
 
     osFreeAllMBlocks();
 
 #if SIZEOF_VOID_P == 8
+    nat n;
     for (n = 0; n < mblock_map_count; n++) {
         stgFree(mblock_maps[n]);
     }