fix a bogus call to bignum_normalize causing assertion failure

master
Andrew Kelley 2016-02-07 03:49:25 -07:00
parent 7b00ed362c
commit 694cfff23f
1 changed files with 0 additions and 1 deletions

View File

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