** Negate condition 'e' (where 'e' is a comparison). */
| 1082 | ** Negate condition 'e' (where 'e' is a comparison). |
| 1083 | */ |
| 1084 | static void negatecondition (FuncState *fs, expdesc *e) { |
| 1085 | Instruction *pc = getjumpcontrol(fs, e->u.info); |
| 1086 | lua_assert(testTMode(GET_OPCODE(*pc)) && GET_OPCODE(*pc) != OP_TESTSET && |
| 1087 | GET_OPCODE(*pc) != OP_TEST); |
| 1088 | SETARG_k(*pc, (GETARG_k(*pc) ^ 1)); |
| 1089 | } |
| 1090 | |
| 1091 | |
| 1092 | /* |
no test coverage detected