[svn:parrot] r49710 - branches/opmap_aware_pmcs/src/pmc

cotto at svn.parrot.org cotto at svn.parrot.org
Thu Oct 28 04:56:22 UTC 2010


Author: cotto
Date: Thu Oct 28 04:56:22 2010
New Revision: 49710
URL: https://trac.parrot.org/parrot/changeset/49710

Log:
[pmc] minor cleanup in PackfileRawSegment; no functional changes

Modified:
   branches/opmap_aware_pmcs/src/pmc/packfilerawsegment.pmc

Modified: branches/opmap_aware_pmcs/src/pmc/packfilerawsegment.pmc
==============================================================================
--- branches/opmap_aware_pmcs/src/pmc/packfilerawsegment.pmc	Thu Oct 28 04:55:31 2010	(r49709)
+++ branches/opmap_aware_pmcs/src/pmc/packfilerawsegment.pmc	Thu Oct 28 04:56:22 2010	(r49710)
@@ -122,9 +122,9 @@
         PMC * opcodes = attrs->opcodes;
         size_t i;
 
-        pfseg->type     = attrs->type;
-        pfseg->size     = VTABLE_get_integer(INTERP, opcodes);
-        pfseg->data     = mem_gc_allocate_n_typed(INTERP, pfseg->size, opcode_t);
+        pfseg->type = attrs->type;
+        pfseg->size = VTABLE_get_integer(INTERP, opcodes);
+        pfseg->data = mem_gc_allocate_n_typed(INTERP, pfseg->size, opcode_t);
 
         /* Not very efficient... */
         for (i = 0; i < pfseg->size; ++i) {


More information about the parrot-commits mailing list