[svn:parrot] r41861 - branches/pcc_reapply/src/pmc
tene at svn.parrot.org
tene at svn.parrot.org
Wed Oct 14 22:05:37 UTC 2009
Author: tene
Date: Wed Oct 14 22:05:35 2009
New Revision: 41861
URL: https://trac.parrot.org/parrot/changeset/41861
Log:
[pcc] Minor speedup copied from r41859
Modified:
branches/pcc_reapply/src/pmc/callsignature.pmc
Modified: branches/pcc_reapply/src/pmc/callsignature.pmc
==============================================================================
--- branches/pcc_reapply/src/pmc/callsignature.pmc Wed Oct 14 22:01:55 2009 (r41860)
+++ branches/pcc_reapply/src/pmc/callsignature.pmc Wed Oct 14 22:05:35 2009 (r41861)
@@ -309,7 +309,7 @@
HashBucket *b = h->bi[i];
while (b) {
- Parrot_gc_mark_PObj_alive(interp, (PObj *)b->key);
+ Parrot_gc_mark_STRING_alive(interp, (STRING *)b->key);
mark_positionals(interp, (Pcc_cell *)b->value);
b = b->next;
}
More information about the parrot-commits
mailing list