| 596 | |
| 597 | |
| 598 | static void invertjump (FuncState *fs, expdesc *e) { |
| 599 | Instruction *pc = getjumpcontrol(fs, e->u.info); |
| 600 | lua_assert(testTMode(GET_OPCODE(*pc)) && GET_OPCODE(*pc) != OP_TESTSET && |
| 601 | GET_OPCODE(*pc) != OP_TEST); |
| 602 | SETARG_A(*pc, !(GETARG_A(*pc))); |
| 603 | } |
| 604 | |
| 605 | |
| 606 | static int jumponcond (FuncState *fs, expdesc *e, int cond) { |
no test coverage detected