summaryrefslogtreecommitdiff
path: root/bignum.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-11-26 05:25:08 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-11-26 05:25:08 +0000
commit4d786d21e3e80a70554c3fed7aa39e8ec7922b44 (patch)
tree74b2f2b99629231ad8cfddea87da2157ccd6ccf3 /bignum.c
parentf5202fdbc751a235984dc678976c2fb6b13b0ca2 (diff)
* removed spaces just before tabs.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25930 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bignum.c')
-rw-r--r--bignum.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/bignum.c b/bignum.c
index d1c9820ee7..f6fca9f546 100644
--- a/bignum.c
+++ b/bignum.c
@@ -1904,8 +1904,8 @@ bigmul1_karatsuba(VALUE x, VALUE y)
if (!BIGZEROP(xl) && !BIGZEROP(yl)) {
/* t2 <- xl * yl */
- t2 = bigmul0(xl, yl);
- t2n = big_real_len(t2);
+ t2 = bigmul0(xl, yl);
+ t2n = big_real_len(t2);
/* copy t2 into low bytes of the result (z0) */
MEMCPY(zds, BDIGITS(t2), BDIGIT, t2n);
@@ -2013,7 +2013,7 @@ dump_bignum(VALUE x)
long i;
printf("0x0");
for (i = RBIGNUM_LEN(x); i--; ) {
- printf("_%08x", BDIGITS(x)[i]);
+ printf("_%08x", BDIGITS(x)[i]);
}
puts("");
}
@@ -2041,7 +2041,7 @@ bigmul0(VALUE x, VALUE y)
normal:
if (x == y) return bigsqr_fast(x);
if (xn == 1 && yn == 1) return bigmul1_single(x, y);
- return bigmul1_normal(x, y);
+ return bigmul1_normal(x, y);
}
/* normal multiplication when x or y is a sparse bignum */