| 1703 | } |
| 1704 | |
| 1705 | void GenCodeCmdLtoD(VMCmd cmd) |
| 1706 | { |
| 1707 | (void)cmd; |
| 1708 | EMIT_COMMENT("LTOD"); |
| 1709 | |
| 1710 | EMIT_OP_RPTR(o_fild, sQWORD, rESP, 0); |
| 1711 | EMIT_OP_REG_NUM(o_add, rESP, 8); |
| 1712 | EMIT_OP_REG_NUM(o_sub, rESP, 8); |
| 1713 | EMIT_OP_RPTR(o_fstp, sQWORD, rESP, 0); |
| 1714 | } |
| 1715 | |
| 1716 | void GenCodeCmdItoL(VMCmd cmd) |
| 1717 | { |
nothing calls this directly
no test coverage detected