mirror of
https://github.com/ziglang/zig.git
synced 2025-12-27 08:33:15 +00:00
Builder: fix incorrect type for 32-bit systems
This commit is contained in:
parent
f3d23d9232
commit
fbbccc9d5f
@ -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;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user