** Format and emit an 'iAsBx' instruction. */
| 416 | ** Format and emit an 'iAsBx' instruction. |
| 417 | */ |
| 418 | static int codeAsBx (FuncState *fs, OpCode o, int a, int bc) { |
| 419 | unsigned int b = bc + OFFSET_sBx; |
| 420 | lua_assert(getOpMode(o) == iAsBx); |
| 421 | lua_assert(a <= MAXARG_A && b <= MAXARG_Bx); |
| 422 | return luaK_code(fs, CREATE_ABx(o, a, b)); |
| 423 | } |
| 424 | |
| 425 | |
| 426 | /* |
no test coverage detected