From 602308f0f54daa7503ea0f4909b51aef5f3b0ca1 Mon Sep 17 00:00:00 2001 From: Aurelien Jarno Date: Thu, 14 Apr 2011 00:49:29 +0200 Subject: [PATCH] cpu-all.h: define CPU_LDoubleU Add a CPU_LDoubleU type, matching the floatx80 definition and the long double type on x86 hosts. Based on a patch from Laurent Vivier . Cc: Laurent Vivier Reviewed-by: Peter Maydell Signed-off-by: Aurelien Jarno --- cpu-all.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/cpu-all.h b/cpu-all.h index dc0f2f02ab..0bae6df8ec 100644 --- a/cpu-all.h +++ b/cpu-all.h @@ -138,6 +138,16 @@ typedef union { uint64_t ll; } CPU_DoubleU; +#if defined(FLOATX80) +typedef union { + floatx80 d; + struct { + uint64_t lower; + uint16_t upper; + } l; +} CPU_LDoubleU; +#endif + #if defined(CONFIG_SOFTFLOAT) typedef union { float128 q; -- 2.11.4.GIT