[svn:parrot] r47270 - branches/gc_massacre_no_constant/lib/Parrot/Pmc2c

bacek at svn.parrot.org bacek at svn.parrot.org
Tue Jun 1 20:59:07 UTC 2010


Author: bacek
Date: Tue Jun  1 20:59:07 2010
New Revision: 47270
URL: https://trac.parrot.org/parrot/changeset/47270

Log:
Don't use constants in generated dynpmcs.

Modified:
   branches/gc_massacre_no_constant/lib/Parrot/Pmc2c/UtilFunctions.pm

Modified: branches/gc_massacre_no_constant/lib/Parrot/Pmc2c/UtilFunctions.pm
==============================================================================
--- branches/gc_massacre_no_constant/lib/Parrot/Pmc2c/UtilFunctions.pm	Tue Jun  1 20:58:33 2010	(r47269)
+++ branches/gc_massacre_no_constant/lib/Parrot/Pmc2c/UtilFunctions.pm	Tue Jun  1 20:59:07 2010	(r47270)
@@ -158,7 +158,7 @@
     int pass;
 
     /* create a library PMC */
-    pmc = Parrot_pmc_new_constant(interp, enum_class_ParrotLibrary);
+    pmc = Parrot_pmc_new(interp, enum_class_ParrotLibrary);
 
     /* TODO: stuff some info into this PMC's props */
 


More information about the parrot-commits mailing list