diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-06-28 12:06:20 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-06-28 12:06:20 -0300 |
commit | afed6c6864b0538be3bde402fcb74df01ba78ed4 (patch) | |
tree | f4818b9db1bf550abadfb7cb065189edf4947bf1 /ltests.c | |
parent | 770954510fd04912b2d84db0bd68dac62eaa5c5a (diff) | |
download | lua-afed6c6864b0538be3bde402fcb74df01ba78ed4.tar.gz lua-afed6c6864b0538be3bde402fcb74df01ba78ed4.tar.bz2 lua-afed6c6864b0538be3bde402fcb74df01ba78ed4.zip |
missing an opcode name
Diffstat (limited to 'ltests.c')
-rw-r--r-- | ltests.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltests.c,v 1.83 2001/06/15 20:36:57 roberto Exp roberto $ | 2 | ** $Id: ltests.c,v 1.84 2001/06/26 13:20:45 roberto Exp roberto $ |
3 | ** Internal Module for Debugging of the Lua Implementation | 3 | ** Internal Module for Debugging of the Lua Implementation |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -177,6 +177,7 @@ static const l_char *const instrname[NUM_OPCODES] = { | |||
177 | l_s("OP_LFORPREP"), | 177 | l_s("OP_LFORPREP"), |
178 | l_s("OP_LFORLOOP"), | 178 | l_s("OP_LFORLOOP"), |
179 | l_s("OP_SETLIST"), | 179 | l_s("OP_SETLIST"), |
180 | l_s("OP_SETLIST0"), | ||
180 | l_s("OP_CLOSURE") | 181 | l_s("OP_CLOSURE") |
181 | }; | 182 | }; |
182 | 183 | ||