Builder: fix incorrect type for 32-bit systems

This commit is contained in:
Jacob Young 2023-10-18 16:51:45 -04:00
parent f3d23d9232
commit fbbccc9d5f

View File

@ -10462,7 +10462,7 @@ fn bigIntConstAssumeCapacity(
const overflow = @subWithOverflow(borrow, llvm_limb);
llvm_limb = overflow[0];
borrow -%= overflow[1];
assert(borrow == 0 or borrow == std.math.maxInt(u64));
assert(borrow == 0 or borrow == std.math.maxInt(std.math.big.Limb));
}
result_limb.* = llvm_limb;
}