From 8fca58aec5788a6dbaa88bad7a9ba64181ec7d08 Mon Sep 17 00:00:00 2001 From: jjgarcia Date: Thu, 19 Jun 2008 15:01:35 +0000 Subject: [PATCH] OP_JT/JNIL need not set NVALUES --- src/c/interpreter.d | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/c/interpreter.d b/src/c/interpreter.d index e3c4c7af0..7c65382b3 100644 --- a/src/c/interpreter.d +++ b/src/c/interpreter.d @@ -806,14 +806,12 @@ ecl_interpret(cl_object env, cl_object bytecodes, void *pc) } CASE(OP_JNIL); { cl_oparg jump = GET_OPARG(vector); - NVALUES = 1; if (Null(reg0)) vector += jump - OPARG_SIZE; THREAD_NEXT; } CASE(OP_JT); { cl_oparg jump = GET_OPARG(vector); - NVALUES = 1; if (!Null(reg0)) vector += jump - OPARG_SIZE; THREAD_NEXT;