** Format and emit an 'iABx' instruction. */
| 416 | ** Format and emit an 'iABx' instruction. |
| 417 | */ |
| 418 | int luaK_codeABx (FuncState *fs, OpCode o, int A, int Bc) { |
| 419 | lua_assert(getOpMode(o) == iABx); |
| 420 | lua_assert(A <= MAXARG_A && Bc <= MAXARG_Bx); |
| 421 | return luaK_code(fs, CREATE_ABx(o, A, Bc)); |
| 422 | } |
| 423 | |
| 424 | |
| 425 | /* |
no test coverage detected