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