** Negate condition 'e' (where 'e' is a comparison). */
| 1100 | ** Negate condition 'e' (where 'e' is a comparison). |
| 1101 | */ |
| 1102 | static void negatecondition (FuncState *fs, expdesc *e) { |
| 1103 | Instruction *pc = getjumpcontrol(fs, e->u.info); |
| 1104 | lua_assert(testTMode(GET_OPCODE(*pc)) && GET_OPCODE(*pc) != OP_TESTSET && |
| 1105 | GET_OPCODE(*pc) != OP_TEST); |
| 1106 | SETARG_k(*pc, (GETARG_k(*pc) ^ 1)); |
| 1107 | } |
| 1108 | |
| 1109 | |
| 1110 | /* |
no test coverage detected