aboutsummaryrefslogtreecommitdiff
path: root/lopcodes.c
diff options
context:
space:
mode:
Diffstat (limited to 'lopcodes.c')
-rw-r--r--lopcodes.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/lopcodes.c b/lopcodes.c
index d84f402e..d0a3dcf1 100644
--- a/lopcodes.c
+++ b/lopcodes.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lopcodes.c,v 1.25 2003/05/14 21:09:53 roberto Exp roberto $ 2** $Id: lopcodes.c,v 1.26 2004/04/30 20:13:38 roberto Exp roberto $
3** See Copyright Notice in lua.h 3** See Copyright Notice in lua.h
4*/ 4*/
5 5
@@ -53,7 +53,8 @@ const char *const luaP_opnames[NUM_OPCODES] = {
53 "SETLIST", 53 "SETLIST",
54 "SETLISTO", 54 "SETLISTO",
55 "CLOSE", 55 "CLOSE",
56 "CLOSURE" 56 "CLOSURE",
57 "VARARG"
57}; 58};
58 59
59#endif 60#endif
@@ -98,5 +99,6 @@ const lu_byte luaP_opmodes[NUM_OPCODES] = {
98 ,opmode(0, 0, OpArgU, OpArgN, iABx) /* OP_SETLISTO */ 99 ,opmode(0, 0, OpArgU, OpArgN, iABx) /* OP_SETLISTO */
99 ,opmode(0, 0, OpArgN, OpArgN, iABC) /* OP_CLOSE */ 100 ,opmode(0, 0, OpArgN, OpArgN, iABC) /* OP_CLOSE */
100 ,opmode(0, 1, OpArgU, OpArgN, iABx) /* OP_CLOSURE */ 101 ,opmode(0, 1, OpArgU, OpArgN, iABx) /* OP_CLOSURE */
102 ,opmode(0, 1, OpArgU, OpArgN, iABC) /* OP_VARARG */
101}; 103};
102 104