aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-07-03 14:01:34 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-07-03 14:01:34 -0300
commit00aaee0ae714d548f38ed1f21ed32b1d2e8d2887 (patch)
tree8c9b9bbf546d27b9f95bc4e5623d630b487bd97f
parent18d3e82cfef08b60cba316dccb8f0830d311b439 (diff)
downloadlua-00aaee0ae714d548f38ed1f21ed32b1d2e8d2887.tar.gz
lua-00aaee0ae714d548f38ed1f21ed32b1d2e8d2887.tar.bz2
lua-00aaee0ae714d548f38ed1f21ed32b1d2e8d2887.zip
details
-rw-r--r--lopcodes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lopcodes.h b/lopcodes.h
index b0881213..9abb5152 100644
--- a/lopcodes.h
+++ b/lopcodes.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lopcodes.h,v 1.75 2001/06/11 14:56:42 roberto Exp roberto $ 2** $Id: lopcodes.h,v 1.76 2001/06/28 19:58:57 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*/
@@ -166,7 +166,7 @@ OP_TESTGE,/* A C test := (R(A) >= R/K(C)) */
166OP_TESTT,/* A B test := R(B); if (test) R(A) := R(B) */ 166OP_TESTT,/* A B test := R(B); if (test) R(A) := R(B) */
167OP_TESTF,/* A B test := not R(B); if (test) R(A) := nil */ 167OP_TESTF,/* A B test := not R(B); if (test) R(A) := nil */
168 168
169OP_NILJMP,/* A R(A) := nil; PC++; */ 169OP_NILJMP,/* A Bc R(A) := nil; PC++; */
170 170
171OP_CALL,/* A B C R(A), ... ,R(A+C-1) := R(A)(R(A+1), ... ,R(A+B))*/ 171OP_CALL,/* A B C R(A), ... ,R(A+C-1) := R(A)(R(A+1), ... ,R(A+B))*/
172OP_RETURN,/* A B return R(A), ... ,R(A+B-1) (see (3)) */ 172OP_RETURN,/* A B return R(A), ... ,R(A+B-1) (see (3)) */