mirror of
https://github.com/kanjitalk755/macemu.git
synced 2025-01-26 16:31:11 +00:00
Fix long double support for x86 targets if -m128bit-long-double.
This commit is contained in:
parent
a7888c6c64
commit
0222915bc4
@ -133,7 +133,7 @@ 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 && defined(__x86_64__)
|
||||
#elif SIZEOF_LONG_DOUBLE == 16 && (defined(__i386__) || defined(__x86_64__))
|
||||
/* Long doubles on x86-64 are really held in old x87 FPU stack. */
|
||||
typedef long double uae_f128;
|
||||
typedef uae_f128 fpu_register;
|
||||
|
Loading…
x
Reference in New Issue
Block a user