** Code binary operators with immediate operands. */
| 1434 | ** Code binary operators with immediate operands. |
| 1435 | */ |
| 1436 | static void codebini (FuncState *fs, OpCode op, |
| 1437 | expdesc *e1, expdesc *e2, int flip, int line, |
| 1438 | TMS event) { |
| 1439 | int v2 = int2sC(cast_int(e2->u.ival)); /* immediate operand */ |
| 1440 | lua_assert(e2->k == VKINT); |
| 1441 | finishbinexpval(fs, e1, e2, op, v2, flip, line, OP_MMBINI, event); |
| 1442 | } |
| 1443 | |
| 1444 | |
| 1445 | /* |
no test coverage detected