** Format and emit an 'iABx' instruction. */
| 322 | ** Format and emit an 'iABx' instruction. |
| 323 | */ |
| 324 | int luaK_codeABx (FuncState *fs, OpCode o, int a, unsigned int bc) { |
| 325 | lua_assert(getOpMode(o) == iABx || getOpMode(o) == iAsBx); |
| 326 | lua_assert(getCMode(o) == OpArgN); |
| 327 | lua_assert(a <= MAXARG_A && bc <= MAXARG_Bx); |
| 328 | return luaK_code(fs, CREATE_ABx(o, a, bc)); |
| 329 | } |
| 330 | |
| 331 | |
| 332 | /* |
no test coverage detected