| 1655 | int (*doubleToIntPtr)(double) = DoubleToInt; |
| 1656 | |
| 1657 | void GenCodeCmdDtoI(VMCmd cmd) |
| 1658 | { |
| 1659 | (void)cmd; |
| 1660 | EMIT_COMMENT("DTOI"); |
| 1661 | |
| 1662 | EMIT_OP_RPTR(o_call, sDWORD, rNONE, 1, rNONE, (unsigned)(intptr_t)&doubleToIntPtr); |
| 1663 | EMIT_OP_REG_NUM(o_add, rESP, 8); |
| 1664 | EMIT_OP_REG(o_push, rEAX); |
| 1665 | } |
| 1666 | |
| 1667 | long long DoubleToLong(double a) |
| 1668 | { |
nothing calls this directly
no test coverage detected