From 1c423d266180a37fa00d433ec769b1420d591ba7 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 14 Feb 2002 19:43:01 -0200 Subject: LFIELDS_PER_FLUSH is an opcode detail --- lopcodes.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'lopcodes.h') diff --git a/lopcodes.h b/lopcodes.h index e72ac0cd..29ff40aa 100644 --- a/lopcodes.h +++ b/lopcodes.h @@ -213,16 +213,16 @@ extern const lu_byte luaP_opmodes[NUM_OPCODES]; #define testOpMode(m, b) (luaP_opmodes[m] & (1 << (b))) -/* -** constant instructions -*/ - -extern const Instruction luaP_yieldop; - /* ** opcode names (only included when compiled with LUA_OPNAMES) */ extern const char *const luaP_opnames[]; + +/* number of list items to accumulate before a SETLIST instruction */ +/* (must be a power of 2) */ +#define LFIELDS_PER_FLUSH 32 + + #endif -- cgit v1.2.3-55-g6feb