aboutsummaryrefslogtreecommitdiff
path: root/lopcodes.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2011-07-15 09:50:29 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2011-07-15 09:50:29 -0300
commit32a12e2f3f18aeade5e2cd77eda67a261815246e (patch)
treefc01c8eb3566c967952bb2a85f1a4f7fcceb58d2 /lopcodes.h
parent559bb554c944ed166e363e522e48a71e60e1922d (diff)
downloadlua-32a12e2f3f18aeade5e2cd77eda67a261815246e.tar.gz
lua-32a12e2f3f18aeade5e2cd77eda67a261815246e.tar.bz2
lua-32a12e2f3f18aeade5e2cd77eda67a261815246e.zip
detail (cleaned whitespaces at end of lines)
Diffstat (limited to 'lopcodes.h')
-rw-r--r--lopcodes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lopcodes.h b/lopcodes.h
index 5ab88228..886cdbcc 100644
--- a/lopcodes.h
+++ b/lopcodes.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lopcodes.h,v 1.140 2011/04/07 18:14:12 roberto Exp roberto $ 2** $Id: lopcodes.h,v 1.141 2011/04/19 16:22:13 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++ */