1
0
mirror of https://github.com/simh/simh.git synced 2026-02-26 16:54:22 +00:00

3B2: Fix inconsistent 64bit type name reference

This commit is contained in:
Mark Pizzolato
2023-02-07 06:06:59 -10:00
parent f2431b9214
commit 8f963ac5ae

View File

@@ -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;