** Code binary operators with no constant operand. */
| 1489 | ** Code binary operators with no constant operand. |
| 1490 | */ |
| 1491 | static void codebinNoK (FuncState *fs, BinOpr opr, |
| 1492 | expdesc *e1, expdesc *e2, int flip, int line) { |
| 1493 | if (flip) |
| 1494 | swapexps(e1, e2); /* back to original order */ |
| 1495 | codebinexpval(fs, opr, e1, e2, line); /* use standard operators */ |
| 1496 | } |
| 1497 | |
| 1498 | |
| 1499 | /* |
no test coverage detected