| 3024 | } |
| 3025 | |
| 3026 | void GenCodeCmdBitNot(VMCmd cmd) |
| 3027 | { |
| 3028 | (void)cmd; |
| 3029 | EMIT_COMMENT("BNOT int"); |
| 3030 | EMIT_OP_REG(o_pop, rEAX); |
| 3031 | EMIT_OP_REG(o_not, rEAX); |
| 3032 | EMIT_OP_REG(o_push, rEAX); |
| 3033 | } |
| 3034 | |
| 3035 | void GenCodeCmdLogNot(VMCmd cmd) |
| 3036 | { |
nothing calls this directly
no test coverage detected