[svn:parrot] r44233 - branches/sys_mem_reduce/src/pmc
bacek at svn.parrot.org
bacek at svn.parrot.org
Sat Feb 20 12:53:04 UTC 2010
Author: bacek
Date: Sat Feb 20 12:53:04 2010
New Revision: 44233
URL: https://trac.parrot.org/parrot/changeset/44233
Log:
Finally switch FIA to GC allocations
Modified:
branches/sys_mem_reduce/src/pmc/fixedintegerarray.pmc
Modified: branches/sys_mem_reduce/src/pmc/fixedintegerarray.pmc
==============================================================================
--- branches/sys_mem_reduce/src/pmc/fixedintegerarray.pmc Sat Feb 20 12:52:43 2010 (r44232)
+++ branches/sys_mem_reduce/src/pmc/fixedintegerarray.pmc Sat Feb 20 12:53:04 2010 (r44233)
@@ -338,7 +338,7 @@
SET_ATTR_size(INTERP, SELF, size);
GET_ATTR_int_array(INTERP, SELF, int_array);
SET_ATTR_int_array(INTERP, SELF,
- mem_realloc_n_typed(int_array, size, INTVAL));
+ mem_gc_realloc_n_typed(INTERP, int_array, size, INTVAL));
PObj_custom_destroy_SET(SELF);
}
More information about the parrot-commits
mailing list