diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2016-02-07 03:49:25 -0700 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2016-02-07 03:49:25 -0700 |
| commit | 694cfff23f0fe534fa794a083c1484f14ccd0ab2 (patch) | |
| tree | 98a1b5568fee87550c6cf0b59af4d842355ad5c8 | |
| parent | 7b00ed362c69fc7da6eea503417d1f54b667a64b (diff) | |
| download | zig-694cfff23f0fe534fa794a083c1484f14ccd0ab2.tar.gz zig-694cfff23f0fe534fa794a083c1484f14ccd0ab2.zip | |
fix a bogus call to bignum_normalize causing assertion failure
| -rw-r--r-- | src/bignum.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/bignum.cpp b/src/bignum.cpp index 7cf5e791cb..e98cce7436 100644 --- a/src/bignum.cpp +++ b/src/bignum.cpp @@ -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; } |
