aboutsummaryrefslogtreecommitdiff
path: root/lopcodes.h
diff options
context:
space:
mode:
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 7492c462..8afd2d4e 100644
--- a/lopcodes.h
+++ b/lopcodes.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lopcodes.h,v 1.79 2001/08/27 15:14:57 roberto Exp $ 2** $Id: lopcodes.h,v 1.81 2001/09/07 17:39:10 roberto Exp $
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*/
@@ -140,7 +140,7 @@ OP_SETGLOBAL,/* A Bc Gbl[Kst(Bc)] := R(A) */
140OP_SETUPVAL,/* A B UpValue[B] := R(A) */ 140OP_SETUPVAL,/* A B UpValue[B] := R(A) */
141OP_SETTABLE,/* A B C R(B)[R/K(C)] := R(A) */ 141OP_SETTABLE,/* A B C R(B)[R/K(C)] := R(A) */
142 142
143OP_NEWTABLE,/* A Bc R(A) := {} (size = Bc) */ 143OP_NEWTABLE,/* A B C R(A) := {} (size = B,C) */
144 144
145OP_SELF,/* A B C R(A+1) := R(B); R(A) := R(B)[R/K(C)] */ 145OP_SELF,/* A B C R(A+1) := R(B); R(A) := R(B)[R/K(C)] */
146 146