** Code binary operators with immediate operands. */
| 1519 | ** Code binary operators with immediate operands. |
| 1520 | */ |
| 1521 | static void codebini (FuncState *fs, OpCode op, |
| 1522 | expdesc *e1, expdesc *e2, int flip, int line, |
| 1523 | TMS event) { |
| 1524 | int v2 = int2sC(cast_int(e2->u.ival)); /* immediate operand */ |
| 1525 | lua_assert(e2->k == VKINT); |
| 1526 | finishbinexpval(fs, e1, e2, op, v2, flip, line, OP_MMBINI, event); |
| 1527 | } |
| 1528 | |
| 1529 | |
| 1530 | /* |
no test coverage detected