diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-12-11 10:34:22 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-12-11 10:34:22 -0200 |
commit | 73517e86b02b47531bec189d4230e359274d8d04 (patch) | |
tree | d5ccf4675f7923be9cc328a210947afa71482a66 /lcode.h | |
parent | 9e8face8d83646c830cc932bf97ae1c3f5fb48ba (diff) | |
download | lua-73517e86b02b47531bec189d4230e359274d8d04.tar.gz lua-73517e86b02b47531bec189d4230e359274d8d04.tar.bz2 lua-73517e86b02b47531bec189d4230e359274d8d04.zip |
OP_TFORLOOP uses extra stack space
Diffstat (limited to 'lcode.h')
-rw-r--r-- | lcode.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lcode.h,v 1.36 2002/05/13 13:07:48 roberto Exp roberto $ | 2 | ** $Id: lcode.h,v 1.37 2002/06/12 19:16:00 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 | */ |
@@ -47,6 +47,7 @@ int luaK_codeABC (FuncState *fs, OpCode o, int A, int B, int C); | |||
47 | void luaK_fixline (FuncState *fs, int line); | 47 | void luaK_fixline (FuncState *fs, int line); |
48 | void luaK_nil (FuncState *fs, int from, int n); | 48 | void luaK_nil (FuncState *fs, int from, int n); |
49 | void luaK_reserveregs (FuncState *fs, int n); | 49 | void luaK_reserveregs (FuncState *fs, int n); |
50 | void luaK_checkstack (FuncState *fs, int n); | ||
50 | int luaK_stringK (FuncState *fs, TString *s); | 51 | int luaK_stringK (FuncState *fs, TString *s); |
51 | int luaK_numberK (FuncState *fs, lua_Number r); | 52 | int luaK_numberK (FuncState *fs, lua_Number r); |
52 | void luaK_dischargevars (FuncState *fs, expdesc *e); | 53 | void luaK_dischargevars (FuncState *fs, expdesc *e); |