[svn:parrot] r41732 - branches/pcc_reapply/src/ops

bacek at svn.parrot.org bacek at svn.parrot.org
Tue Oct 6 07:36:19 UTC 2009


Author: bacek
Date: Tue Oct  6 07:36:16 2009
New Revision: 41732
URL: https://trac.parrot.org/parrot/changeset/41732

Log:
Remove unused ccont from op set_returns

Modified:
   branches/pcc_reapply/src/ops/core.ops

Modified: branches/pcc_reapply/src/ops/core.ops
==============================================================================
--- branches/pcc_reapply/src/ops/core.ops	Tue Oct  6 00:30:56 2009	(r41731)
+++ branches/pcc_reapply/src/ops/core.ops	Tue Oct  6 07:36:16 2009	(r41732)
@@ -572,13 +572,12 @@
 op set_returns(inconst PMC) :flow {
     opcode_t * const raw_returns = CUR_OPCODE;
     PMC *ctx, *caller_ctx;
-    PMC *ccont, *call_object;
+    PMC *call_object;
     PMC *signature = $1;
     INTVAL argc;
 
     ctx                     = CURRENT_CONTEXT(interp);
     caller_ctx              = Parrot_pcc_get_caller_ctx(interp, ctx);
-    ccont                   = Parrot_pcc_get_continuation(interp, ctx);
     call_object             = Parrot_pcc_get_signature(interp, caller_ctx);
 
     Parrot_pcc_fill_returns_from_op(interp, call_object, signature, raw_returns);


More information about the parrot-commits mailing list