From 320784568526764cdfcccdb4ffece9c2aed5af8d Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Thu, 15 Jan 2026 13:09:24 +0100 Subject: fix: boot.h: Fix Binary64 struct for IEEE 754. Signed-off-by: Amlal El Mahrouss --- include/boot.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/boot.h b/include/boot.h index 9039859..642e21a 100644 --- a/include/boot.h +++ b/include/boot.h @@ -138,8 +138,8 @@ static inline void __sync_synchronize(void) { typedef union { struct { char __sign; - int32_t __mantissa; - int16_t __exponent; + int16_t __mantissa; + int32_t __exponent; }; float __fv; -- cgit v1.2.3