Author: particle
Date: Sun Feb  5 15:53:23 2006
New Revision: 11434

Modified:
   trunk/src/inter_call.c
   trunk/src/interpreter.c
   trunk/src/ops/pic.ops
Log:
src: remove unused vars

Modified: trunk/src/inter_call.c
==============================================================================
--- trunk/src/inter_call.c      (original)
+++ trunk/src/inter_call.c      Sun Feb  5 15:53:23 2006
@@ -643,7 +643,7 @@ init_named(Interp *interpreter, struct c
 static int
 locate_pos_named(Interp *interpreter, struct call_state *st)
 {
-    int i, n_named, idx;
+    int i, n_named;
     INTVAL sig;
 
     n_named = -1;

Modified: trunk/src/interpreter.c
==============================================================================
--- trunk/src/interpreter.c     (original)
+++ trunk/src/interpreter.c     Sun Feb  5 15:53:23 2006
@@ -471,7 +471,6 @@ init_jit(Interp *interpreter, opcode_t *
     opcode_t *code_start;
     UINTVAL code_size;          /* in opcodes */
     opcode_t *code_end;
-    jit_f jit_code;
     Parrot_jit_info_t *jit_info;
 
     if (interpreter->code->jit_info)

Modified: trunk/src/ops/pic.ops
==============================================================================
--- trunk/src/ops/pic.ops       (original)
+++ trunk/src/ops/pic.ops       Sun Feb  5 15:53:23 2006
@@ -249,8 +249,7 @@ inline op pic_callr__(inconst PMC) :pic 
     parrot_context_t *ctx;
     opcode_t *pc;
     void **pred_pc;
-    PMC *sig;
-    INTVAL *bitp, n_args;
+    INTVAL n_args;
 
     ctx = CONTEXT(interpreter->ctx);
     mic = (Parrot_MIC *) cur_opcode[1];

Reply via email to