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