** Negate condition 'e' (where 'e' is a comparison). */
| 1144 | ** Negate condition 'e' (where 'e' is a comparison). |
| 1145 | */ |
| 1146 | static void negatecondition (FuncState *fs, expdesc *e) { |
| 1147 | Instruction *pc = getjumpcontrol(fs, e->u.info); |
| 1148 | lua_assert(testTMode(GET_OPCODE(*pc)) && GET_OPCODE(*pc) != OP_TESTSET && |
| 1149 | GET_OPCODE(*pc) != OP_TEST); |
| 1150 | SETARG_k(*pc, (GETARG_k(*pc) ^ 1)); |
| 1151 | } |
| 1152 | |
| 1153 | |
| 1154 | /* |
no test coverage detected