[svn:parrot] r37420 - in trunk/src: . ops

allison at svn.parrot.org allison at svn.parrot.org
Sat Mar 14 23:40:57 UTC 2009


Author: allison
Date: Sat Mar 14 23:40:56 2009
New Revision: 37420
URL: https://trac.parrot.org/parrot/changeset/37420

Log:
[cage] Delete unused variables to eliminate warnings. Thanks to ujwalic for the
patch. Partial application of TT #446.

Modified:
   trunk/src/ops/core.ops
   trunk/src/packfile.c

Modified: trunk/src/ops/core.ops
==============================================================================
--- trunk/src/ops/core.ops	Sat Mar 14 23:38:06 2009	(r37419)
+++ trunk/src/ops/core.ops	Sat Mar 14 23:40:56 2009	(r37420)
@@ -917,7 +917,6 @@
         _exit($2);
     else {
         opcode_t * const ret       = expr NEXT();
-        PMC             *resume    = new_ret_continuation_pmc(interp, ret);
         PMC             *exception = Parrot_ex_build_exception(interp, $1,
                                                                $2, NULL);
         opcode_t * const dest      = Parrot_ex_throw_from_op(interp,

Modified: trunk/src/packfile.c
==============================================================================
--- trunk/src/packfile.c	Sat Mar 14 23:38:06 2009	(r37419)
+++ trunk/src/packfile.c	Sat Mar 14 23:40:56 2009	(r37420)
@@ -865,7 +865,6 @@
     ASSERT_ARGS(do_sub_pragmas)
     PackFile_FixupTable * const ft = self->fixups;
     PackFile_ConstTable * const ct = self->const_table;
-    PackFile            * const pf = self->base.pf;
     opcode_t i;
 
     TRACE_PRINTF(("PackFile: do_sub_pragmas (action=%d)\n", action));


More information about the parrot-commits mailing list