summaryrefslogtreecommitdiff
path: root/bignum.c
diff options
context:
space:
mode:
Diffstat (limited to 'bignum.c')
-rw-r--r--bignum.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/bignum.c b/bignum.c
index 00d46ee662..7e5ce4d585 100644
--- a/bignum.c
+++ b/bignum.c
@@ -6209,9 +6209,8 @@ rb_big_pow(VALUE x, VALUE y)
if (y == INT2FIX(0)) return INT2FIX(1);
if (RB_FLOAT_TYPE_P(y)) {
d = RFLOAT_VALUE(y);
- if ((BIGNUM_NEGATIVE_P(x) && !BIGZEROP(x)) && d != round(d)) {
- x = DBL2NUM(pow(-rb_big2dbl(x), d));
- return rb_complex_polar(x, DBL2NUM(d * M_PI));
+ if ((BIGNUM_NEGATIVE_P(x) && !BIGZEROP(x))) {
+ return rb_dbl_complex_polar(pow(-rb_big2dbl(x), d), d);
}
}
else if (RB_BIGNUM_TYPE_P(y)) {