From 6e853aa7569d74569108508c3d5a399e514934dd Mon Sep 17 00:00:00 2001 From: OBattler Date: Sat, 29 Apr 2023 18:14:44 +0200 Subject: [PATCH] Use uint64_t's, they can actually hold that many bits. --- src/cpu/x87_ops.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cpu/x87_ops.h b/src/cpu/x87_ops.h index faac0ea60..1a729475c 100644 --- a/src/cpu/x87_ops.h +++ b/src/cpu/x87_ops.h @@ -51,9 +51,9 @@ typedef union double d; struct { - unsigned int mantissa:52; - unsigned int exponent:11; - unsigned int negative:1; + uint64_t mantissa:52; + uint64_t exponent:11; + uint64_t negative:1; }; } double_decompose;