summaryrefslogtreecommitdiff
path: root/lcode.h
diff options
context:
space:
mode:
Diffstat (limited to 'lcode.h')
-rw-r--r--lcode.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/lcode.h b/lcode.h
index 283c0f84..f7cf5e2c 100644
--- a/lcode.h
+++ b/lcode.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lcode.h,v 1.13 2000/05/22 18:44:46 roberto Exp roberto $ 2** $Id: lcode.h,v 1.14 2000/06/16 17:51:40 roberto Exp roberto $
3** Code generator for Lua 3** Code generator for Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -22,9 +22,12 @@
22 22
23enum Mode {iO, iU, iS, iAB}; /* instruction format */ 23enum Mode {iO, iU, iS, iAB}; /* instruction format */
24 24
25#define VD 100 /* flag for variable delta */
26
25extern const struct OpProperties { 27extern const struct OpProperties {
26 char mode; 28 char mode;
27 signed char delta; 29 unsigned char push;
30 unsigned char pop;
28} luaK_opproperties[]; 31} luaK_opproperties[];
29 32
30 33