From f8d677f94c3b4309be94698d33aeb0590a51eabc Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 7 Feb 2011 10:28:27 -0200 Subject: no more 'OP_CLOSE' instructions (use jumps to close upvalues) --- lopcodes.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lopcodes.h') diff --git a/lopcodes.h b/lopcodes.h index f606ab0a..9009b382 100644 --- a/lopcodes.h +++ b/lopcodes.h @@ -1,5 +1,5 @@ /* -** $Id: lopcodes.h,v 1.137 2010/10/25 12:24:55 roberto Exp roberto $ +** $Id: lopcodes.h,v 1.138 2011/02/01 18:03:10 roberto Exp roberto $ ** Opcodes for Lua virtual machine ** See Copyright Notice in lua.h */ @@ -216,7 +216,6 @@ OP_TFORLOOP,/* A sBx if R(A+1) ~= nil then { R(A)=R(A+1); pc += sBx }*/ OP_SETLIST,/* A B C R(A)[(C-1)*FPF+i] := R(A+i), 1 <= i <= B */ -OP_CLOSE,/* A close all upvalues >= R(A) */ OP_CLOSURE,/* A Bx R(A) := closure(KPROTO[Bx]) */ OP_VARARG,/* A B R(A), R(A+1), ..., R(A+B-2) = vararg */ -- cgit v1.2.3-55-g6feb