From: Mike Pall Date: Fri, 10 Sep 2010 09:43:31 +0000 (+0200) Subject: Reduce minimum Lua frame size to 1. X-Git-Tag: v2.0.0-beta6~321 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=daafc0b2a272c2d807959d46b529daaa78cfbb77;p=thirdparty%2FLuaJIT.git Reduce minimum Lua frame size to 1. --- diff --git a/src/lj_parse.c b/src/lj_parse.c index 522f8ef8..1570f833 100644 --- a/src/lj_parse.c +++ b/src/lj_parse.c @@ -1233,7 +1233,7 @@ static void fs_init(LexState *ls, FuncState *fs) fs->nuv = 0; fs->bl = NULL; fs->flags = 0; - fs->framesize = 2; /* Minimum frame size. */ + fs->framesize = 1; /* Minimum frame size. */ fs->kt = lj_tab_new(L, 0, 0); /* Anchor table of constants in stack to avoid being collected. */ settabV(L, L->top, fs->kt);