aboutsummaryrefslogtreecommitdiff
path: root/lopcodes.h
diff options
context:
space:
mode:
Diffstat (limited to 'lopcodes.h')
-rw-r--r--lopcodes.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/lopcodes.h b/lopcodes.h
index f35de02a..4dfe66ce 100644
--- a/lopcodes.h
+++ b/lopcodes.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lopcodes.h,v 1.155 2017/06/29 15:38:41 roberto Exp roberto $ 2** $Id: lopcodes.h,v 1.156 2017/08/14 18:33:14 roberto Exp roberto $
3** Opcodes for Lua virtual machine 3** Opcodes for Lua virtual machine
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -217,7 +217,8 @@ OP_LEN,/* A B R(A) := length of R(B) */
217 217
218OP_CONCAT,/* A B C R(A) := R(B).. ... ..R(C) */ 218OP_CONCAT,/* A B C R(A) := R(B).. ... ..R(C) */
219 219
220OP_JMP,/* A sBx pc+=sBx; if (A) close all upvalues >= R(A - 1) */ 220OP_CLOSE,/* A close all upvalues >= R(A) */
221OP_JMP,/* sBx pc+=sBx */
221OP_EQ,/* A B C if ((RK(B) == RK(C)) ~= A) then pc++ */ 222OP_EQ,/* A B C if ((RK(B) == RK(C)) ~= A) then pc++ */
222OP_LT,/* A B C if ((RK(B) < RK(C)) ~= A) then pc++ */ 223OP_LT,/* A B C if ((RK(B) < RK(C)) ~= A) then pc++ */
223OP_LE,/* A B C if ((RK(B) <= RK(C)) ~= A) then pc++ */ 224OP_LE,/* A B C if ((RK(B) <= RK(C)) ~= A) then pc++ */