diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-10-20 16:29:55 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-10-20 16:29:55 -0200 |
commit | b8d412aa07278b3c4ef6ebc58d4b72045dffea3a (patch) | |
tree | 5567c6b6073d31489ef5cac79d772b39317e2a87 /lopcodes.h | |
parent | 961760c9b687560308644d90981cb5758dd488fd (diff) | |
download | lua-b8d412aa07278b3c4ef6ebc58d4b72045dffea3a.tar.gz lua-b8d412aa07278b3c4ef6ebc58d4b72045dffea3a.tar.bz2 lua-b8d412aa07278b3c4ef6ebc58d4b72045dffea3a.zip |
error in comment
Diffstat (limited to 'lopcodes.h')
-rw-r--r-- | lopcodes.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lopcodes.h,v 1.145 2013/12/18 14:12:03 roberto Exp roberto $ | 2 | ** $Id: lopcodes.h,v 1.146 2013/12/30 20:47:58 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 | */ |
@@ -203,7 +203,7 @@ OP_LEN,/* A B R(A) := length of R(B) */ | |||
203 | 203 | ||
204 | OP_CONCAT,/* A B C R(A) := R(B).. ... ..R(C) */ | 204 | OP_CONCAT,/* A B C R(A) := R(B).. ... ..R(C) */ |
205 | 205 | ||
206 | OP_JMP,/* A sBx pc+=sBx; if (A) close all upvalues >= R(A) + 1 */ | 206 | OP_JMP,/* A sBx pc+=sBx; if (A) close all upvalues >= R(A - 1) */ |
207 | OP_EQ,/* A B C if ((RK(B) == RK(C)) ~= A) then pc++ */ | 207 | OP_EQ,/* A B C if ((RK(B) == RK(C)) ~= A) then pc++ */ |
208 | OP_LT,/* A B C if ((RK(B) < RK(C)) ~= A) then pc++ */ | 208 | OP_LT,/* A B C if ((RK(B) < RK(C)) ~= A) then pc++ */ |
209 | OP_LE,/* A B C if ((RK(B) <= RK(C)) ~= A) then pc++ */ | 209 | OP_LE,/* A B C if ((RK(B) <= RK(C)) ~= A) then pc++ */ |