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