| 1682 | } |
| 1683 | |
| 1684 | void GenCodeCmdDtoF(VMCmd cmd) |
| 1685 | { |
| 1686 | (void)cmd; |
| 1687 | EMIT_COMMENT("DTOF"); |
| 1688 | |
| 1689 | EMIT_OP_RPTR(o_fld, sQWORD, rESP, 0); |
| 1690 | EMIT_OP_REG_NUM(o_add, rESP, 8); |
| 1691 | EMIT_OP_REG_NUM(o_sub, rESP, 4); |
| 1692 | EMIT_OP_RPTR(o_fstp, sDWORD, rESP, 0); |
| 1693 | } |
| 1694 | |
| 1695 | void GenCodeCmdItoD(VMCmd cmd) |
| 1696 | { |
nothing calls this directly
no test coverage detected