From 8748b48b7a7c64f4f9e0114a1247cee3d801a3b3 Mon Sep 17 00:00:00 2001 From: gbeauche <> Date: Fri, 20 Sep 2002 16:52:48 +0000 Subject: [PATCH] Disable USE_QUAD_DOUBLE for now and probably for good as (i) the emulator implementation is not correct, (ii) I don't know of any CPU which handles this kind of format *natively* with conformance to IEEE. --- BasiliskII/src/uae_cpu/fpu/types.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/BasiliskII/src/uae_cpu/fpu/types.h b/BasiliskII/src/uae_cpu/fpu/types.h index f515bceb..2a19250b 100644 --- a/BasiliskII/src/uae_cpu/fpu/types.h +++ b/BasiliskII/src/uae_cpu/fpu/types.h @@ -133,7 +133,10 @@ typedef long double uae_f64; typedef long double uae_f96; typedef uae_f96 fpu_register; #define USE_LONG_DOUBLE 1 -#elif SIZEOF_LONG_DOUBLE == 16 +#elif (SIZEOF_LONG_DOUBLE == 16) && 0 +/* Disable for now and probably for good as (i) the emulator + implementation is not correct, (ii) I don't know of any CPU which + handles this kind of format *natively* with conformance to IEEE. */ typedef long double uae_f128; typedef uae_f128 fpu_register; #define USE_QUAD_DOUBLE 1