| 2529 | } |
| 2530 | |
| 2531 | void GenCodeCmdBitXor(VMCmd cmd) |
| 2532 | { |
| 2533 | (void)cmd; |
| 2534 | EMIT_COMMENT("BXOR int"); |
| 2535 | EMIT_OP_REG(o_pop, rEAX); |
| 2536 | EMIT_OP_REG(o_pop, rEDX); |
| 2537 | EMIT_OP_REG_REG(o_xor, rEAX, rEDX); |
| 2538 | EMIT_OP_REG(o_push, rEAX); |
| 2539 | KILL_REG(rEDX); |
| 2540 | } |
| 2541 | |
| 2542 | void GenCodeCmdLogAnd(VMCmd cmd) |
| 2543 | { |
nothing calls this directly
no test coverage detected