[svn:parrot] r40577 - branches/tt795_kill_parrot_sub_structure/src

bacek at svn.parrot.org bacek at svn.parrot.org
Sun Aug 16 04:14:21 UTC 2009


Author: bacek
Date: Sun Aug 16 04:14:20 2009
New Revision: 40577
URL: https://trac.parrot.org/parrot/changeset/40577

Log:
[core] Remove 2 more Parrot_sub referencies

Modified:
   branches/tt795_kill_parrot_sub_structure/src/packdump.c
   branches/tt795_kill_parrot_sub_structure/src/pbc_merge.c

Modified: branches/tt795_kill_parrot_sub_structure/src/packdump.c
==============================================================================
--- branches/tt795_kill_parrot_sub_structure/src/packdump.c	Sun Aug 16 04:13:55 2009	(r40576)
+++ branches/tt795_kill_parrot_sub_structure/src/packdump.c	Sun Aug 16 04:14:20 2009	(r40577)
@@ -269,7 +269,7 @@
         Parrot_io_printf(interp, "    [ 'PFC_PMC', {\n");
         {
             PMC * const pmc = self->u.key;
-            Parrot_sub *sub;
+            Parrot_Sub_attributes *sub;
             STRING * const null = Parrot_str_new_constant(interp, "(null)");
             STRING *namespace_description;
 

Modified: branches/tt795_kill_parrot_sub_structure/src/pbc_merge.c
==============================================================================
--- branches/tt795_kill_parrot_sub_structure/src/pbc_merge.c	Sun Aug 16 04:13:55 2009	(r40576)
+++ branches/tt795_kill_parrot_sub_structure/src/pbc_merge.c	Sun Aug 16 04:14:20 2009	(r40577)
@@ -457,7 +457,7 @@
                     case enum_class_Sub:
                     case enum_class_Coroutine:
                         {
-                        Parrot_sub *sub;
+                        Parrot_Sub_attributes *sub;
                         PMC_get_sub(interp, copy->u.key, sub);
                         sub->start_offs += inputs[i]->code_start;
                         sub->end_offs += inputs[i]->code_start;


More information about the parrot-commits mailing list