From 4d786d21e3e80a70554c3fed7aa39e8ec7922b44 Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 26 Nov 2009 05:25:08 +0000 Subject: * removed spaces just before tabs. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25930 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- bignum.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'bignum.c') 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 */ -- cgit v1.2.3