|
@@ -1,5 +1,5 @@
|
|
/*
|
|
/*
|
|
-** $Id: lopcodes.h,v 1.130 2009/09/23 20:33:05 roberto Exp roberto $
|
|
|
|
|
|
+** $Id: lopcodes.h,v 1.131 2009/09/28 16:32:50 roberto Exp roberto $
|
|
** Opcodes for Lua virtual machine
|
|
** Opcodes for Lua virtual machine
|
|
** See Copyright Notice in lua.h
|
|
** See Copyright Notice in lua.h
|
|
*/
|
|
*/
|
|
@@ -217,7 +217,7 @@ OP_SETLIST,/* A B C R(A)[(C-1)*FPF+i] := R(A+i), 1 <= i <= B */
|
|
OP_CLOSE,/* A close all variables in the stack up to (>=) R(A)*/
|
|
OP_CLOSE,/* A close all variables in the stack up to (>=) R(A)*/
|
|
OP_CLOSURE,/* A Bx R(A) := closure(KPROTO[Bx]) */
|
|
OP_CLOSURE,/* A Bx R(A) := closure(KPROTO[Bx]) */
|
|
|
|
|
|
-OP_VARARG,/* A B R(A), R(A+1), ..., R(A+B-1) = vararg */
|
|
|
|
|
|
+OP_VARARG,/* A B R(A), R(A+1), ..., R(A+B-2) = vararg */
|
|
|
|
|
|
OP_TFORLOOP,/* A sBx if R(A+1) ~= nil then { R(A)=R(A+1); pc += sBx }*/
|
|
OP_TFORLOOP,/* A sBx if R(A+1) ~= nil then { R(A)=R(A+1); pc += sBx }*/
|
|
|
|
|