** Format and emit an 'isJ' instruction. */
| 435 | ** Format and emit an 'isJ' instruction. |
| 436 | */ |
| 437 | static int codesJ (FuncState *fs, OpCode o, int sj, int k) { |
| 438 | unsigned int j = sj + OFFSET_sJ; |
| 439 | lua_assert(getOpMode(o) == isJ); |
| 440 | lua_assert(j <= MAXARG_sJ && (k & ~1) == 0); |
| 441 | return luaK_code(fs, CREATE_sJ(o, j, k)); |
| 442 | } |
| 443 | |
| 444 | |
| 445 | /* |