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