mirror of
https://github.com/ziglang/zig.git
synced 2026-02-13 12:59:04 +00:00
fix a bogus call to bignum_normalize causing assertion failure
This commit is contained in:
parent
7b00ed362c
commit
694cfff23f
@ -156,7 +156,6 @@ bool bignum_mul(BigNum *dest, BigNum *op1, BigNum *op2) {
|
||||
|
||||
if (dest->kind == BigNumKindFloat) {
|
||||
dest->data.x_float = op1->data.x_float * op2->data.x_float;
|
||||
bignum_normalize(dest);
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user