diff options
Diffstat (limited to 'lcode.h')
-rw-r--r-- | lcode.h | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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 | ||
23 | enum Mode {iO, iU, iS, iAB}; /* instruction format */ | 23 | enum Mode {iO, iU, iS, iAB}; /* instruction format */ |
24 | 24 | ||
25 | #define VD 100 /* flag for variable delta */ | ||
26 | |||
25 | extern const struct OpProperties { | 27 | extern 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 | ||