summaryrefslogtreecommitdiff
path: root/bignum.c
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-19 11:40:52 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-19 11:40:52 +0000
commit4b8ebed41c106ea2909ae965f99a3f2b77fea533 (patch)
treecefe60a331837756fefdca63f6a988b9683309f4 /bignum.c
parentdec6ba8a22aa5a20538f4f7d0bd37a384db0ad73 (diff)
* bignum.c (bigmul1): C99ism.
* bignum.c (bigdivrem1): need dummy return value. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14331 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bignum.c')
-rw-r--r--bignum.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/bignum.c b/bignum.c
index bca48558ce..8e2ae98bcd 100644
--- a/bignum.c
+++ b/bignum.c
@@ -1467,8 +1467,9 @@ bigmul1(void *ptr)
zds = BDIGITS(z);
while (j--) zds[j] = 0;
for (i = 0; i < RBIGNUM_LEN(x); i++) {
+ BDIGIT_DBL dd;
if (bms->stop) return Qnil;
- BDIGIT_DBL dd = BDIGITS(x)[i];
+ dd = BDIGITS(x)[i];
if (dd == 0) continue;
n = 0;
for (j = 0; j < RBIGNUM_LEN(y); j++) {
@@ -1555,7 +1556,7 @@ bigdivrem1(void *ptr)
if (nx < ny || (nx == ny && BDIGITS(x)[nx - 1] < BDIGITS(y)[ny - 1])) {
if (divp) *divp = rb_int2big(0);
if (modp) *modp = x;
- return;
+ return Qnil;
}
xds = BDIGITS(x);
if (ny == 1) {
@@ -1574,7 +1575,7 @@ bigdivrem1(void *ptr)
RBIGNUM_SET_SIGN(*modp, RBIGNUM_SIGN(x));
}
if (divp) *divp = z;
- return;
+ return Qnil;
}
z = bignew(nx==ny?nx+2:nx+1, RBIGNUM_SIGN(x)==RBIGNUM_SIGN(y));
zds = BDIGITS(z);
@@ -1666,6 +1667,7 @@ bigdivrem1(void *ptr)
RBIGNUM_SET_LEN(*modp, ny);
RBIGNUM_SET_SIGN(*modp, RBIGNUM_SIGN(x));
}
+ return Qnil;
}
static VALUE