[MLton-commit] r4200

Matthew Fluet MLton@mlton.org
Fri, 11 Nov 2005 15:29:17 -0800


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

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

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

Modified: mlton/branches/on-20050822-x86_64-branch/runtime/gc/TODO
===================================================================
--- mlton/branches/on-20050822-x86_64-branch/runtime/gc/TODO	2005-11-11 21:58:14 UTC (rev 4199)
+++ mlton/branches/on-20050822-x86_64-branch/runtime/gc/TODO	2005-11-11 23:29:14 UTC (rev 4200)
@@ -1,7 +1,6 @@
 
 * reorder ZZZ_TYPE_INDEX
 * eliminate STRING_TYPE_INDEX, STRING_TYPE_HEADER in favor of WORD8.
-* reorder SOURCE_SEQ_UNKNOWN
 * fix semantics of numNonPointers for normal objects to mean bytes of
         non-pointer data, rather than number of 32-bit words of
         non-pointer data.  Rename to sizeNonPointers.

Modified: mlton/branches/on-20050822-x86_64-branch/runtime/gc/sources.h
===================================================================
--- mlton/branches/on-20050822-x86_64-branch/runtime/gc/sources.h	2005-11-11 21:58:14 UTC (rev 4199)
+++ mlton/branches/on-20050822-x86_64-branch/runtime/gc/sources.h	2005-11-11 23:29:14 UTC (rev 4200)
@@ -25,8 +25,8 @@
 #define PRISSI PRIu32
 #define FMTSSI "%"PRISSI
 
+#define SOURCE_SEQ_UNKNOWN    0
 #define SOURCE_SEQ_GC         1
-#define SOURCE_SEQ_UNKNOWN    0
 
 typedef struct GC_source {
   GC_sourceNameIndex sourceNameIndex;

Modified: mlton/branches/on-20050822-x86_64-branch/runtime/gc.h
===================================================================
--- mlton/branches/on-20050822-x86_64-branch/runtime/gc.h	2005-11-11 21:58:14 UTC (rev 4199)
+++ mlton/branches/on-20050822-x86_64-branch/runtime/gc.h	2005-11-11 23:29:14 UTC (rev 4200)
@@ -12,9 +12,13 @@
 #include "cenv.h"
 #include "util.h"
 
+
+#include "gc/debug.h"
+
 struct GC_state;
 typedef struct GC_state *GC_state;
 
+
 #if (defined (MLTON_GC_INTERNAL))
 
 #define GC_MODEL_NATIVE32
@@ -31,6 +35,7 @@
 #include "gc/weak.h"
 #include "gc/int-inf.h"
 #include "gc/string.h"
+
 #include "gc/object-size.h"
 #include "gc/generational.h"
 #include "gc/heap.h"
@@ -73,7 +78,6 @@
 
 #endif /* (defined (MLTON_GC_INTERNAL)) */
 
-#include "gc/debug.h"
 #include "gc/platform.h"
 #include "gc/gc_state_exports.h"
 #include "gc/exports.h"