[svn:parrot] r35973 - trunk/src

[email protected] Sat, 24 Jan 2009 14:43:53 -0800 (PST)
Newsgroups perl.cvs.parrot
Message-ID <[email protected]>
Author: chromatic
Date: Sat Jan 24 14:43:52 2009
New Revision: 35973

Modified:
   trunk/src/global_setup.c

Log:
[src] Removed the other use of the deprecated SArray PMC.

Modified: trunk/src/global_setup.c
==============================================================================
--- trunk/src/global_setup.c	(original)
+++ trunk/src/global_setup.c	Sat Jan 24 14:43:52 2009
@@ -215,7 +215,7 @@
     Parrot_register_core_pmcs(interp, classname_hash);
 
     /* init the interpreter globals array */
-    iglobals         = pmc_new(interp, enum_class_SArray);
+    iglobals         = pmc_new(interp, enum_class_FixedPMCArray);
     interp->iglobals = iglobals;
     VTABLE_set_integer_native(interp, iglobals, (INTVAL)IGLOBALS_SIZE);