[svn:parrot] r36376 - trunk/src/pmc

cotto at svn.parrot.org cotto at svn.parrot.org
Thu Feb 5 09:52:37 UTC 2009


Author: cotto
Date: Thu Feb  5 09:52:36 2009
New Revision: 36376
URL: https://trac.parrot.org/parrot/changeset/36376

Log:
[pmc] undo accidental commit

Modified:
   trunk/src/pmc/resizableintegerarray.pmc

Modified: trunk/src/pmc/resizableintegerarray.pmc
==============================================================================
--- trunk/src/pmc/resizableintegerarray.pmc	Thu Feb  5 09:43:07 2009	(r36375)
+++ trunk/src/pmc/resizableintegerarray.pmc	Thu Feb  5 09:52:36 2009	(r36376)
@@ -113,10 +113,10 @@
         GET_ATTR_resize_threshold(INTERP, SELF, resize_threshold);
         if (!int_array) {
             /* empty - used fixed routine */
-            if (size < 64) {
-                SUPER(64);
+            if (size < 8) {
+                SUPER(8);
                 SET_ATTR_size(INTERP, SELF, size);
-                SET_ATTR_resize_threshold(INTERP, SELF, 64);
+                SET_ATTR_resize_threshold(INTERP, SELF, 8);
             }
             else {
                 SUPER(size);


More information about the parrot-commits mailing list