| 3053 | } |
| 3054 | |
| 3055 | void GenCodeCmdBitNotL(VMCmd cmd) |
| 3056 | { |
| 3057 | (void)cmd; |
| 3058 | EMIT_COMMENT("BNOT long"); |
| 3059 | EMIT_OP_RPTR(o_not, sDWORD, rESP, 0); |
| 3060 | EMIT_OP_RPTR(o_not, sDWORD, rESP, 4); |
| 3061 | } |
| 3062 | |
| 3063 | void GenCodeCmdLogNotL(VMCmd cmd) |
| 3064 | { |
nothing calls this directly
no test coverage detected