diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-02-20 15:15:33 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-02-20 15:15:33 -0300 |
commit | 099442c41f2cec6122690e6c8f2e11327613e6f6 (patch) | |
tree | 73599b274ea4a9b96906ff8160eeb4a524702a8e /lcode.h | |
parent | 27600fe87a6fafdfd4ddddeb390591fe749b480f (diff) | |
download | lua-099442c41f2cec6122690e6c8f2e11327613e6f6.tar.gz lua-099442c41f2cec6122690e6c8f2e11327613e6f6.tar.bz2 lua-099442c41f2cec6122690e6c8f2e11327613e6f6.zip |
better separation between basic types
Diffstat (limited to 'lcode.h')
-rw-r--r-- | lcode.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lcode.h,v 1.18 2000/12/04 18:33:40 roberto Exp roberto $ | 2 | ** $Id: lcode.h,v 1.19 2001/01/29 15:26: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 | */ |
@@ -39,9 +39,9 @@ enum Mode {iO, iU, iS, iAB}; /* instruction format */ | |||
39 | #define VD 100 /* flag for variable delta */ | 39 | #define VD 100 /* flag for variable delta */ |
40 | 40 | ||
41 | typedef struct OpProperties { | 41 | typedef struct OpProperties { |
42 | char mode; | 42 | lu_byte mode; |
43 | unsigned char push; | 43 | lu_byte push; |
44 | unsigned char pop; | 44 | lu_byte pop; |
45 | } OpProperties; | 45 | } OpProperties; |
46 | 46 | ||
47 | extern const OpProperties luaK_opproperties[]; | 47 | extern const OpProperties luaK_opproperties[]; |