** Format and emit an 'iAsBx' instruction. */
| 424 | ** Format and emit an 'iAsBx' instruction. |
| 425 | */ |
| 426 | int luaK_codeAsBx (FuncState *fs, OpCode o, int a, int bc) { |
| 427 | unsigned int b = bc + OFFSET_sBx; |
| 428 | lua_assert(getOpMode(o) == iAsBx); |
| 429 | lua_assert(a <= MAXARG_A && b <= MAXARG_Bx); |
| 430 | return luaK_code(fs, CREATE_ABx(o, a, b)); |
| 431 | } |
| 432 | |
| 433 | |
| 434 | /* |
no test coverage detected