summaryrefslogtreecommitdiff
path: root/numeric.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-04-27 03:53:43 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-04-27 03:53:43 +0000
commit5d2069cd566a2e1c616a91e4bda82f567d857498 (patch)
treeb87006a09c9c15b5f8584ec1caf6383d67478c32 /numeric.c
parent9d89855052b008c4f366164e36ab88ed49c21e52 (diff)
* numeric.c (int_pow): rb_big_pow() may return other than Bignum.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12227 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'numeric.c')
-rw-r--r--numeric.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/numeric.c b/numeric.c
index 86728f2063..1425348a95 100644
--- a/numeric.c
+++ b/numeric.c
@@ -2272,9 +2272,11 @@ int_pow(long x, unsigned long y)
while (y % 2 == 0) {
long x2 = x * x;
if (x2 < x || !POSFIXABLE(x2)) {
+ VALUE v;
bignum:
- return rb_big_mul(rb_big_pow(rb_int2big(x), LONG2NUM(y)),
- rb_int2big(neg ? -z : z));
+ v = rb_big_pow(rb_int2big(neg ? -x : x), LONG2NUM(y));
+ if (z != 1) v = rb_big_mul(rb_int2big(z), v);
+ return v;
}
x = x2;
y >>= 1;