| 205 | fpd->fpx = float64_to_floatx80_allowunnormal(f, &fs); |
| 206 | } |
| 207 | static void from_double(fpdata *fpd, uae_u32 *wrd1, uae_u32 *wrd2) |
| 208 | { |
| 209 | float64 f = floatx80_to_float64(fpd->fpx, &fs); |
| 210 | *wrd1 = f >> 32; |
| 211 | *wrd2 = (uae_u32)f; |
| 212 | } |
| 213 | |
| 214 | static void to_exten(fpdata *fpd, uae_u32 wrd1, uae_u32 wrd2, uae_u32 wrd3) |
| 215 | { |
nothing calls this directly
no test coverage detected