fix <64-bit integer eval stringification path, to not interpret too many bits

This commit is contained in:
Ryan Fleury
2025-07-23 13:26:23 -07:00
parent 6026ac16d4
commit 87fa6b9239
4 changed files with 37 additions and 11 deletions
+3 -1
View File
@@ -57,9 +57,11 @@ union E_Value
U64 u64;
U32 u32;
U16 u16;
U8 u8;
S64 s64;
S32 s32;
S32 s16;
S16 s16;
S8 s8;
F64 f64;
F32 f32;
};