** Format and emit an 'isJ' instruction. */
| 428 | ** Format and emit an 'isJ' instruction. |
| 429 | */ |
| 430 | static int codesJ (FuncState *fs, OpCode o, int sj, int k) { |
| 431 | unsigned int j = sj + OFFSET_sJ; |
| 432 | lua_assert(getOpMode(o) == isJ); |
| 433 | lua_assert(j <= MAXARG_sJ && (k & ~1) == 0); |
| 434 | return luaK_code(fs, CREATE_sJ(o, j, k)); |
| 435 | } |
| 436 | |
| 437 | |
| 438 | /* |