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

bacek at svn.parrot.org bacek at svn.parrot.org
Sat Jun 5 21:31:34 UTC 2010


Author: bacek
Date: Sat Jun  5 21:31:34 2010
New Revision: 47384
URL: https://trac.parrot.org/parrot/changeset/47384

Log:
Use more specific mark_PMC_alive instead of generic PObj version.

Modified:
   trunk/src/pmc/orderedhash.pmc

Modified: trunk/src/pmc/orderedhash.pmc
==============================================================================
--- trunk/src/pmc/orderedhash.pmc	Sat Jun  5 19:33:27 2010	(r47383)
+++ trunk/src/pmc/orderedhash.pmc	Sat Jun  5 21:31:34 2010	(r47384)
@@ -263,7 +263,7 @@
                 PARROT_ORDEREDHASH(SELF);
 
         if (attrs->hash)
-            Parrot_gc_mark_PObj_alive(INTERP, (PObj *)attrs->hash);
+            Parrot_gc_mark_PMC_alive(INTERP, (PObj *)attrs->hash);
 
         /* Don't mark C<first> and C<last>. They are in lookup hash anyway */
     }


More information about the parrot-commits mailing list