From 8bc02b5ded0ce35097ae13d30c014b99ac861ef0 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 27 Apr 2007 03:53:43 +0000 Subject: * numeric.c (int_pow): rb_big_pow() may return other than Bignum. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@12227 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- numeric.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'numeric.c') diff --git a/numeric.c b/numeric.c index 86728f206..1425348a9 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; -- cgit