summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-10-20 16:32:09 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-10-20 16:32:09 -0200
commit44be021309e1250bcef197537948514506ca8512 (patch)
tree6b30f30b5278fe1897cf5b38b9e0d18e84051f0e
parentf59b241315049c73e2b755bf5fb238bff323c3d3 (diff)
downloadlua-44be021309e1250bcef197537948514506ca8512.tar.gz
lua-44be021309e1250bcef197537948514506ca8512.tar.bz2
lua-44be021309e1250bcef197537948514506ca8512.zip
comment
-rw-r--r--lopcodes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lopcodes.h b/lopcodes.h
index 07d2b3f3..34791651 100644
--- a/lopcodes.h
+++ b/lopcodes.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lopcodes.h,v 1.142 2011/07/15 12:50:29 roberto Exp $ 2** $Id: lopcodes.h,v 1.142.1.1 2013/04/12 18:48:47 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*/
@@ -196,7 +196,7 @@ OP_LEN,/* A B R(A) := length of R(B) */
196 196
197OP_CONCAT,/* A B C R(A) := R(B).. ... ..R(C) */ 197OP_CONCAT,/* A B C R(A) := R(B).. ... ..R(C) */
198 198
199OP_JMP,/* A sBx pc+=sBx; if (A) close all upvalues >= R(A) + 1 */ 199OP_JMP,/* A sBx pc+=sBx; if (A) close all upvalues >= R(A - 1) */
200OP_EQ,/* A B C if ((RK(B) == RK(C)) ~= A) then pc++ */ 200OP_EQ,/* A B C if ((RK(B) == RK(C)) ~= A) then pc++ */
201OP_LT,/* A B C if ((RK(B) < RK(C)) ~= A) then pc++ */ 201OP_LT,/* A B C if ((RK(B) < RK(C)) ~= A) then pc++ */
202OP_LE,/* A B C if ((RK(B) <= RK(C)) ~= A) then pc++ */ 202OP_LE,/* A B C if ((RK(B) <= RK(C)) ~= A) then pc++ */