aboutsummaryrefslogtreecommitdiff
path: root/lopcodes.c
diff options
context:
space:
mode:
Diffstat (limited to 'lopcodes.c')
-rw-r--r--lopcodes.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/lopcodes.c b/lopcodes.c
index d4e8556e..3f6b4e78 100644
--- a/lopcodes.c
+++ b/lopcodes.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lopcodes.c,v 1.29 2004/10/04 19:01:53 roberto Exp roberto $ 2** $Id: lopcodes.c,v 1.30 2004/12/02 12:59:10 roberto Exp roberto $
3** See Copyright Notice in lua.h 3** See Copyright Notice in lua.h
4*/ 4*/
5 5
@@ -32,6 +32,7 @@ const char *const luaP_opnames[NUM_OPCODES+1] = {
32 "SUB", 32 "SUB",
33 "MUL", 33 "MUL",
34 "DIV", 34 "DIV",
35 "MOD",
35 "POW", 36 "POW",
36 "UNM", 37 "UNM",
37 "NOT", 38 "NOT",
@@ -76,6 +77,7 @@ const lu_byte luaP_opmodes[NUM_OPCODES] = {
76 ,opmode(0, 1, OpArgK, OpArgK, iABC) /* OP_SUB */ 77 ,opmode(0, 1, OpArgK, OpArgK, iABC) /* OP_SUB */
77 ,opmode(0, 1, OpArgK, OpArgK, iABC) /* OP_MUL */ 78 ,opmode(0, 1, OpArgK, OpArgK, iABC) /* OP_MUL */
78 ,opmode(0, 1, OpArgK, OpArgK, iABC) /* OP_DIV */ 79 ,opmode(0, 1, OpArgK, OpArgK, iABC) /* OP_DIV */
80 ,opmode(0, 1, OpArgK, OpArgK, iABC) /* OP_MOD */
79 ,opmode(0, 1, OpArgK, OpArgK, iABC) /* OP_POW */ 81 ,opmode(0, 1, OpArgK, OpArgK, iABC) /* OP_POW */
80 ,opmode(0, 1, OpArgR, OpArgN, iABC) /* OP_UNM */ 82 ,opmode(0, 1, OpArgR, OpArgN, iABC) /* OP_UNM */
81 ,opmode(0, 1, OpArgR, OpArgN, iABC) /* OP_NOT */ 83 ,opmode(0, 1, OpArgR, OpArgN, iABC) /* OP_NOT */