| 2778 | } |
| 2779 | |
| 2780 | void GenCodeCmdBitAndL(VMCmd cmd) |
| 2781 | { |
| 2782 | (void)cmd; |
| 2783 | EMIT_COMMENT("BAND long"); |
| 2784 | EMIT_OP_REG(o_pop, rEAX); |
| 2785 | EMIT_OP_REG(o_pop, rEDX); |
| 2786 | EMIT_OP_RPTR_REG(o_and, sDWORD, rESP, 0, rEAX); |
| 2787 | EMIT_OP_RPTR_REG(o_and, sDWORD, rESP, 4, rEDX); |
| 2788 | } |
| 2789 | |
| 2790 | void GenCodeCmdBitOrL(VMCmd cmd) |
| 2791 | { |
nothing calls this directly
no test coverage detected