fix warning
[ghc-hetmet.git] / 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]);
     }