| 3015 | |
| 3016 | |
| 3017 | void GenCodeCmdNeg(VMCmd cmd) |
| 3018 | { |
| 3019 | (void)cmd; |
| 3020 | EMIT_COMMENT("NEG int"); |
| 3021 | EMIT_OP_REG(o_pop, rEAX); |
| 3022 | EMIT_OP_REG(o_neg, rEAX); |
| 3023 | EMIT_OP_REG(o_push, rEAX); |
| 3024 | } |
| 3025 | |
| 3026 | void GenCodeCmdBitNot(VMCmd cmd) |
| 3027 | { |
nothing calls this directly
no test coverage detected