| 434 | |
| 435 | |
| 436 | static void enterblock (FuncState *fs, BlockCnt *bl, lu_byte isloop) { |
| 437 | bl->isloop = isloop; |
| 438 | bl->nactvar = fs->nactvar; |
| 439 | bl->firstlabel = fs->ls->dyd->label.n; |
| 440 | bl->firstgoto = fs->ls->dyd->gt.n; |
| 441 | bl->upval = 0; |
| 442 | bl->previous = fs->bl; |
| 443 | fs->bl = bl; |
| 444 | lua_assert(fs->freereg == fs->nactvar); |
| 445 | } |
| 446 | |
| 447 | |
| 448 | /* |
no outgoing calls