[MLton-commit] r4574

Matthew Fluet MLton@mlton.org
Wed, 24 May 2006 05:23:54 -0700


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

U   mlton/branches/on-20050822-x86_64-branch/runtime/gc/heap.c

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

Modified: mlton/branches/on-20050822-x86_64-branch/runtime/gc/heap.c
===================================================================
--- mlton/branches/on-20050822-x86_64-branch/runtime/gc/heap.c	2006-05-24 02:24:47 UTC (rev 4573)
+++ mlton/branches/on-20050822-x86_64-branch/runtime/gc/heap.c	2006-05-24 12:23:53 UTC (rev 4574)
@@ -286,9 +286,9 @@
     pointer to;
     size_t remaining;
 
+    newHeap.oldGenSize = size;
     from = curHeapp->start + size;
     to = newHeap.start + size;
-    newHeap.oldGenSize = size;
     remaining = size;
 copy:                   
     assert (remaining == (size_t)(from - curHeapp->start)