From 5e01c0516b14d16fa4e780dff13077bed76aa38a Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Fri, 3 Feb 2023 22:03:45 -0800 Subject: [PATCH] 3B2: Fix inconsistent 64bit type name reference --- 3B2/3b2_mau.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/3B2/3b2_mau.c b/3B2/3b2_mau.c index fc14b27c..ff88050e 100644 --- a/3B2/3b2_mau.c +++ b/3B2/3b2_mau.c @@ -873,7 +873,7 @@ static t_uint64 estimate_div_128_to_64(t_uint64 a0, t_uint64 a1, t_uint64 b) sub_128( a0, a1, term0, term1, &rem0, &rem1 ); - while (((int64_t)rem0) < 0) { + while (((t_int64)rem0) < 0) { z -= 0x100000000ull; b1 = b << 32; add_128(rem0, rem1, b0, b1, &rem0, &rem1); @@ -985,7 +985,7 @@ static t_int64 round_pack_int64(t_bool sign, RM rounding_mode) { t_bool increment; - int64_t z; + t_int64 z; increment = (t_int64)abs_1 < 0;