** Format and emit an 'iABx' instruction. */
| 329 | ** Format and emit an 'iABx' instruction. |
| 330 | */ |
| 331 | int luaK_codeABx (FuncState *fs, OpCode o, int a, unsigned int bc) { |
| 332 | lua_assert(getOpMode(o) == iABx || getOpMode(o) == iAsBx); |
| 333 | lua_assert(getCMode(o) == OpArgN); |
| 334 | lua_assert(a <= MAXARG_A && bc <= MAXARG_Bx); |
| 335 | return luaK_code(fs, CREATE_ABx(o, a, bc)); |
| 336 | } |
| 337 | |
| 338 | |
| 339 | /* |
no test coverage detected