aboutsummaryrefslogtreecommitdiff
path: root/lopcodes.h
diff options
context:
space:
mode:
Diffstat (limited to 'lopcodes.h')
-rw-r--r--lopcodes.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/lopcodes.h b/lopcodes.h
index 821bb196..d7b5dfe0 100644
--- a/lopcodes.h
+++ b/lopcodes.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lopcodes.h,v 1.192 2018/06/08 19:07:27 roberto Exp roberto $ 2** $Id: lopcodes.h,v 1.194 2018/06/26 18:00:55 roberto Exp $
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*/
@@ -358,9 +358,6 @@ LUAI_DDEC(const lu_byte luaP_opmodes[NUM_OPCODES];)
358#define opmode(ot,it,t,a,m) (((ot)<<6) | ((it)<<5) | ((t)<<4) | ((a)<<3) | (m)) 358#define opmode(ot,it,t,a,m) (((ot)<<6) | ((it)<<5) | ((t)<<4) | ((a)<<3) | (m))
359 359
360 360
361LUAI_DDEC(const char *const luaP_opnames[NUM_OPCODES+1];) /* opcode names */
362
363
364/* number of list items to accumulate before a SETLIST instruction */ 361/* number of list items to accumulate before a SETLIST instruction */
365#define LFIELDS_PER_FLUSH 50 362#define LFIELDS_PER_FLUSH 50
366 363