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