** Code binary operators with K operand. */
| 1531 | ** Code binary operators with K operand. |
| 1532 | */ |
| 1533 | static void codebinK (FuncState *fs, BinOpr opr, |
| 1534 | expdesc *e1, expdesc *e2, int flip, int line) { |
| 1535 | TMS event = binopr2TM(opr); |
| 1536 | int v2 = e2->u.info; /* K index */ |
| 1537 | OpCode op = binopr2op(opr, OPR_ADD, OP_ADDK); |
| 1538 | finishbinexpval(fs, e1, e2, op, v2, flip, line, OP_MMBINK, event); |
| 1539 | } |
| 1540 | |
| 1541 | |
| 1542 | /* Try to code a binary operator negating its second operand. |
no test coverage detected