** Format and emit an 'iABx' instruction. */
| 406 | ** Format and emit an 'iABx' instruction. |
| 407 | */ |
| 408 | int luaK_codeABx (FuncState *fs, OpCode o, int a, unsigned int bc) { |
| 409 | lua_assert(getOpMode(o) == iABx); |
| 410 | lua_assert(a <= MAXARG_A && bc <= MAXARG_Bx); |
| 411 | return luaK_code(fs, CREATE_ABx(o, a, bc)); |
| 412 | } |
| 413 | |
| 414 | |
| 415 | /* |
no test coverage detected