diff options
author | 2023-01-09 19:50:44 -0600 | |
---|---|---|
committer | 2023-01-09 19:50:44 -0600 | |
commit | 5a29410b26cf50c17ff43b77b0d0533a1799c976 (patch) | |
tree | 43198856530561e254de13a1155fbcbbdb8eb328 /src/devices/machine/i8087.cpp | |
parent | af4fb2a5efc67bb82192468b996f982b71ae7881 (diff) |
i8087: clang fix
Diffstat (limited to 'src/devices/machine/i8087.cpp')
-rw-r--r-- | src/devices/machine/i8087.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/devices/machine/i8087.cpp b/src/devices/machine/i8087.cpp index 359498f7182..93c6e90fe57 100644 --- a/src/devices/machine/i8087.cpp +++ b/src/devices/machine/i8087.cpp @@ -154,17 +154,6 @@ static inline floatx80 floatx80_abs(floatx80 fx) return fx; } -static inline double fx80_to_double(floatx80 fx) -{ - uint64_t d = floatx80_to_float64(fx); - return *(double*)&d; -} - -static inline floatx80 double_to_fx80(double in) -{ - return float64_to_floatx80(*(uint64_t*)&in); -} - DEFINE_DEVICE_TYPE(I8087, i8087_device, "i8087", "Intel 8087") i8087_device::i8087_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, u32 clock) : |