aboutsummaryrefslogtreecommitdiff
path: root/lopcodes.c
diff options
context:
space:
mode:
Diffstat (limited to 'lopcodes.c')
-rw-r--r--lopcodes.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lopcodes.c b/lopcodes.c
index c0974d96..e52805e5 100644
--- a/lopcodes.c
+++ b/lopcodes.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lopcodes.c,v 1.6 2001/10/25 19:14:14 roberto Exp $ 2** $Id: lopcodes.c,v 1.1 2001/11/29 22:14:34 rieru Exp rieru $
3** extracted automatically from lopcodes.h by mkprint.lua 3** extracted automatically from lopcodes.h by mkprint.lua
4** DO NOT EDIT 4** DO NOT EDIT
5** See Copyright Notice in lua.h 5** See Copyright Notice in lua.h
@@ -18,6 +18,7 @@ const char *const luaP_opnames[] = {
18 "MOVE", 18 "MOVE",
19 "LOADK", 19 "LOADK",
20 "LOADINT", 20 "LOADINT",
21 "LOADBOOL",
21 "LOADNIL", 22 "LOADNIL",
22 "GETUPVAL", 23 "GETUPVAL",
23 "GETGLOBAL", 24 "GETGLOBAL",
@@ -45,7 +46,6 @@ const char *const luaP_opnames[] = {
45 "TESTGE", 46 "TESTGE",
46 "TESTT", 47 "TESTT",
47 "TESTF", 48 "TESTF",
48 "NILJMP",
49 "CALL", 49 "CALL",
50 "RETURN", 50 "RETURN",
51 "FORPREP", 51 "FORPREP",
@@ -69,6 +69,7 @@ const lu_byte luaP_opmodes[NUM_OPCODES] = {
69 opmode(0,0,1,0, 1,0,iABC) /* OP_MOVE */ 69 opmode(0,0,1,0, 1,0,iABC) /* OP_MOVE */
70 ,opmode(0,0,0,0, 1,1,iABc) /* OP_LOADK */ 70 ,opmode(0,0,0,0, 1,1,iABc) /* OP_LOADK */
71 ,opmode(0,0,0,0, 1,0,iAsBc) /* OP_LOADINT */ 71 ,opmode(0,0,0,0, 1,0,iAsBc) /* OP_LOADINT */
72 ,opmode(0,0,0,0, 1,0,iABC) /* OP_LOADBOOL */
72 ,opmode(0,0,1,0, 1,0,iABC) /* OP_LOADNIL */ 73 ,opmode(0,0,1,0, 1,0,iABC) /* OP_LOADNIL */
73 ,opmode(0,0,0,0, 1,0,iABC) /* OP_GETUPVAL */ 74 ,opmode(0,0,0,0, 1,0,iABC) /* OP_GETUPVAL */
74 ,opmode(0,0,0,0, 1,1,iABc) /* OP_GETGLOBAL */ 75 ,opmode(0,0,0,0, 1,1,iABc) /* OP_GETGLOBAL */
@@ -96,7 +97,6 @@ const lu_byte luaP_opmodes[NUM_OPCODES] = {
96 ,opmode(1,0,0,1, 0,0,iABC) /* OP_TESTGE */ 97 ,opmode(1,0,0,1, 0,0,iABC) /* OP_TESTGE */
97 ,opmode(1,0,1,0, 1,0,iABC) /* OP_TESTT */ 98 ,opmode(1,0,1,0, 1,0,iABC) /* OP_TESTT */
98 ,opmode(1,0,1,0, 1,0,iABC) /* OP_TESTF */ 99 ,opmode(1,0,1,0, 1,0,iABC) /* OP_TESTF */
99 ,opmode(0,0,0,0, 1,0,iABc) /* OP_NILJMP */
100 ,opmode(0,0,0,0, 0,0,iABC) /* OP_CALL */ 100 ,opmode(0,0,0,0, 0,0,iABC) /* OP_CALL */
101 ,opmode(0,0,0,0, 0,0,iABC) /* OP_RETURN */ 101 ,opmode(0,0,0,0, 0,0,iABC) /* OP_RETURN */
102 ,opmode(0,0,0,0, 0,0,iAsBc) /* OP_FORPREP */ 102 ,opmode(0,0,0,0, 0,0,iAsBc) /* OP_FORPREP */