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