[MLton-commit] r4096

Matthew Fluet MLton@mlton.org
Sat, 17 Sep 2005 10:38:08 -0700


Formatting
----------------------------------------------------------------------

U   mlton/branches/on-20050822-x86_64-branch/runtime/gc/generational.h

----------------------------------------------------------------------

Modified: mlton/branches/on-20050822-x86_64-branch/runtime/gc/generational.h
===================================================================
--- mlton/branches/on-20050822-x86_64-branch/runtime/gc/generational.h	2005-09-16 02:27:15 UTC (rev 4095)
+++ mlton/branches/on-20050822-x86_64-branch/runtime/gc/generational.h	2005-09-17 17:38:07 UTC (rev 4096)
@@ -12,6 +12,8 @@
 
 typedef uint8_t GC_cardMapElem;
 typedef uint8_t GC_crossMapElem;
+#define CARD_MAP_ELEM_SIZE sizeof(GC_cardMapElem)
+#define CROSS_MAP_ELEM_SIZE sizeof(GC_crossMapElem)
 
 struct GC_generationalMaps {
   /* cardMap is an array with cardinality equal to the size of the
@@ -37,6 +39,3 @@
    */
   size_t crossMapValidSize;
 };
-
-#define CARD_MAP_ELEM_SIZE sizeof(GC_cardMapElem)
-#define CROSS_MAP_ELEM_SIZE sizeof(GC_crossMapElem)