| 3044 | |
| 3045 | |
| 3046 | void GenCodeCmdNegL(VMCmd cmd) |
| 3047 | { |
| 3048 | (void)cmd; |
| 3049 | EMIT_COMMENT("NEG long"); |
| 3050 | EMIT_OP_RPTR(o_neg, sDWORD, rESP, 0); |
| 3051 | EMIT_OP_RPTR_NUM(o_adc, sDWORD, rESP, 4, 0); |
| 3052 | EMIT_OP_RPTR(o_neg, sDWORD, rESP, 4); |
| 3053 | } |
| 3054 | |
| 3055 | void GenCodeCmdBitNotL(VMCmd cmd) |
| 3056 | { |
nothing calls this directly
no test coverage detected