[svn:parrot] r47294 - branches/gc_massacre/src/gc

bacek at svn.parrot.org bacek at svn.parrot.org
Wed Jun 2 10:27:14 UTC 2010


Author: bacek
Date: Wed Jun  2 10:27:14 2010
New Revision: 47294
URL: https://trac.parrot.org/parrot/changeset/47294

Log:
Restore calculating of prefix for old MS GC.

Modified:
   branches/gc_massacre/src/gc/system.c

Modified: branches/gc_massacre/src/gc/system.c
==============================================================================
--- branches/gc_massacre/src/gc/system.c	Wed Jun  2 10:22:04 2010	(r47293)
+++ branches/gc_massacre/src/gc/system.c	Wed Jun  2 10:27:14 2010	(r47294)
@@ -447,7 +447,9 @@
     }
 
     /* Get the expected prefix */
-    prefix = 0; //mask & buffer_min;
+    prefix = mem_pools
+                ? mask & buffer_min
+                : 0;
 
     for (cur_var_ptr = hi_var_ptr;
             (ptrdiff_t)cur_var_ptr < (ptrdiff_t)lo_var_ptr;


More information about the parrot-commits mailing list