summaryrefslogtreecommitdiff
path: root/lopcodes.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-05-14 18:09:53 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-05-14 18:09:53 -0300
commit9ec9a012e780cd9d55382134fa955e96a03f7e49 (patch)
tree3e48688569cbbcb4f9136b455fcdcbf28f328995 /lopcodes.h
parentdae99205cfd6f642ffc107bdb949f6a8937992bc (diff)
downloadlua-9ec9a012e780cd9d55382134fa955e96a03f7e49.tar.gz
lua-9ec9a012e780cd9d55382134fa955e96a03f7e49.tar.bz2
lua-9ec9a012e780cd9d55382134fa955e96a03f7e49.zip
details
Diffstat (limited to 'lopcodes.h')
-rw-r--r--lopcodes.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/lopcodes.h b/lopcodes.h
index 14b0c2e4..a7f22d29 100644
--- a/lopcodes.h
+++ b/lopcodes.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lopcodes.h,v 1.103 2003/05/13 20:15:59 roberto Exp roberto $ 2** $Id: lopcodes.h,v 1.104 2003/05/14 12:09:12 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*/
@@ -230,10 +230,7 @@ extern const lu_byte luaP_opmodes[NUM_OPCODES];
230#define testTMode(m) (luaP_opmodes[m] & (1 << 7)) 230#define testTMode(m) (luaP_opmodes[m] & (1 << 7))
231 231
232 232
233#ifdef LUA_OPNAMES 233extern const char *const luaP_opnames[NUM_OPCODES]; /* opcode names */
234extern const char *const luaP_opnames[]; /* opcode names */
235#endif
236
237 234
238 235
239/* number of list items to accumulate before a SETLIST instruction */ 236/* number of list items to accumulate before a SETLIST instruction */