| 2706 | } |
| 2707 | |
| 2708 | void testFPUDD() { |
| 2709 | // MEMORY |
| 2710 | |
| 2711 | // 1 FISTTP 64-bit |
| 2712 | testFISTTP64(); |
| 2713 | |
| 2714 | // 3 FST_DOUBLE_REAL |
| 2715 | testFST_DOUBLE_REAL(false); |
| 2716 | |
| 2717 | // 4 FST_DOUBLE_REAL_Pop |
| 2718 | testFST_DOUBLE_REAL(true); |
| 2719 | |
| 2720 | // 6 FSAVE |
| 2721 | testFSAVE(); |
| 2722 | testFSAVEMmx(); |
| 2723 | } |
| 2724 | |
| 2725 | void testFILD() { |
| 2726 | U64 data = 0x123456789abcdef0l; |
no test coverage detected