aboutsummaryrefslogtreecommitdiff
path: root/lopcodes.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2018-04-04 11:23:41 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2018-04-04 11:23:41 -0300
commit03c6a05ec836c3a90a6b8d730120afdad39c092b (patch)
tree31f0bdf82969b1e082e92d7b5dd5d9e1496d64af /lopcodes.c
parent3d0b5edfe4df7ec54d6885b6b6ce917faddf6661 (diff)
downloadlua-03c6a05ec836c3a90a6b8d730120afdad39c092b.tar.gz
lua-03c6a05ec836c3a90a6b8d730120afdad39c092b.tar.bz2
lua-03c6a05ec836c3a90a6b8d730120afdad39c092b.zip
no more nil-in-table
Diffstat (limited to 'lopcodes.c')
-rw-r--r--lopcodes.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/lopcodes.c b/lopcodes.c
index ac59537b..3db9db25 100644
--- a/lopcodes.c
+++ b/lopcodes.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lopcodes.c,v 1.79 2018/02/21 15:49:32 roberto Exp roberto $ 2** $Id: lopcodes.c,v 1.80 2018/03/07 15:55:38 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*/
@@ -79,8 +79,6 @@ LUAI_DDEF const char *const luaP_opnames[NUM_OPCODES+1] = {
79 "GEI", 79 "GEI",
80 "TEST", 80 "TEST",
81 "TESTSET", 81 "TESTSET",
82 "UNDEF",
83 "ISDEF",
84 "CALL", 82 "CALL",
85 "TAILCALL", 83 "TAILCALL",
86 "RETURN", 84 "RETURN",
@@ -164,8 +162,6 @@ LUAI_DDEF const lu_byte luaP_opmodes[NUM_OPCODES] = {
164 ,opmode(0, 0, 1, 0, iABC) /* OP_GEI */ 162 ,opmode(0, 0, 1, 0, iABC) /* OP_GEI */
165 ,opmode(0, 0, 1, 0, iABC) /* OP_TEST */ 163 ,opmode(0, 0, 1, 0, iABC) /* OP_TEST */
166 ,opmode(0, 0, 1, 1, iABC) /* OP_TESTSET */ 164 ,opmode(0, 0, 1, 1, iABC) /* OP_TESTSET */
167 ,opmode(0, 0, 0, 0, iABC) /* OP_UNDEF */
168 ,opmode(0, 0, 0, 1, iABC) /* OP_ISDEF */
169 ,opmode(1, 1, 0, 1, iABC) /* OP_CALL */ 165 ,opmode(1, 1, 0, 1, iABC) /* OP_CALL */
170 ,opmode(1, 1, 0, 1, iABC) /* OP_TAILCALL */ 166 ,opmode(1, 1, 0, 1, iABC) /* OP_TAILCALL */
171 ,opmode(0, 1, 0, 0, iABC) /* OP_RETURN */ 167 ,opmode(0, 1, 0, 0, iABC) /* OP_RETURN */