ref: d31daf7836754eeb2e0795140db2742a70092868
parent: e6b1b42af6803c74ad53cc53d553462c51e36103
author: Ori Bernstein <[email protected]>
date: Tue Jan 21 20:14:21 EST 2014
Rmove debug print.
--- a/libstd/bigint.myr
+++ b/libstd/bigint.myr
@@ -398,7 +398,6 @@
/* and shift over by the remainder */
carry = 0
for i = a.dig.len; i > 0; i--
- put("carry = %l, shift = %l\n", carry, shift)
t = (a.dig[i - 1] castto(uint64))
a.dig[i - 1] = (carry | (t >> shift)) castto(uint32)
carry = t << (32 - shift)