summaryrefslogtreecommitdiff
path: root/lopcodes.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-02-14 19:43:01 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-02-14 19:43:01 -0200
commit1c423d266180a37fa00d433ec769b1420d591ba7 (patch)
tree65cd8e6da2a58b3f39942fefb6bd9df3adabdb96 /lopcodes.h
parentb3ffaca6381cb5520721af13fff558d3b27d3a36 (diff)
downloadlua-1c423d266180a37fa00d433ec769b1420d591ba7.tar.gz
lua-1c423d266180a37fa00d433ec769b1420d591ba7.tar.bz2
lua-1c423d266180a37fa00d433ec769b1420d591ba7.zip
LFIELDS_PER_FLUSH is an opcode detail
Diffstat (limited to 'lopcodes.h')
-rw-r--r--lopcodes.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/lopcodes.h b/lopcodes.h
index e72ac0cd..29ff40aa 100644
--- a/lopcodes.h
+++ b/lopcodes.h
@@ -214,15 +214,15 @@ extern const lu_byte luaP_opmodes[NUM_OPCODES];
214 214
215 215
216/* 216/*
217** constant instructions
218*/
219
220extern const Instruction luaP_yieldop;
221
222/*
223** opcode names (only included when compiled with LUA_OPNAMES) 217** opcode names (only included when compiled with LUA_OPNAMES)
224*/ 218*/
225extern const char *const luaP_opnames[]; 219extern const char *const luaP_opnames[];
226 220
227 221
222
223/* number of list items to accumulate before a SETLIST instruction */
224/* (must be a power of 2) */
225#define LFIELDS_PER_FLUSH 32
226
227
228#endif 228#endif