| 1714 | } |
| 1715 | |
| 1716 | void GenCodeCmdItoL(VMCmd cmd) |
| 1717 | { |
| 1718 | (void)cmd; |
| 1719 | EMIT_COMMENT("ITOL"); |
| 1720 | |
| 1721 | EMIT_OP_REG(o_pop, rEAX); |
| 1722 | EMIT_OP(o_cdq); |
| 1723 | EMIT_OP_REG(o_push, rEDX); |
| 1724 | EMIT_OP_REG(o_push, rEAX); |
| 1725 | } |
| 1726 | |
| 1727 | void GenCodeCmdLtoI(VMCmd cmd) |
| 1728 | { |
nothing calls this directly
no test coverage detected