[svn:parrot] r41666 - branches/pcc_reapply/src/pmc

bacek at svn.parrot.org bacek at svn.parrot.org
Sun Oct 4 02:08:43 UTC 2009


Author: bacek
Date: Sun Oct  4 02:08:42 2009
New Revision: 41666
URL: https://trac.parrot.org/parrot/changeset/41666

Log:
Comment-out old-style param passing in Continuation.

Modified:
   branches/pcc_reapply/src/pmc/continuation.pmc

Modified: branches/pcc_reapply/src/pmc/continuation.pmc
==============================================================================
--- branches/pcc_reapply/src/pmc/continuation.pmc	Sun Oct  4 02:01:12 2009	(r41665)
+++ branches/pcc_reapply/src/pmc/continuation.pmc	Sun Oct  4 02:08:42 2009	(r41666)
@@ -245,6 +245,8 @@
 
         Parrot_continuation_check(interp, SELF);
         Parrot_continuation_rewind_environment(interp, SELF);
+#if 0
+        FIXME FIXME FIXME Continuation results passing should be updated. Or maybe fully removed?
 
         /* pass args to where caller wants result */
         if (cc->current_results)
@@ -267,7 +269,7 @@
                              src_indexes, dest_indexes, PARROT_PASS_PARAMS);
             Parrot_unblock_GC_mark(INTERP);
         }
-
+#endif
         /* switch segment */
         INTERP->current_args = NULL;
 


More information about the parrot-commits mailing list