summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--bignum.c9
-rw-r--r--test/ruby/test_bignum.rb6
3 files changed, 15 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 0d7de6fed6..5b6b8206c1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Tue Nov 22 11:26:08 2011 NARUSE, Yui <naruse@ruby-lang.org>
+
+ * bignum.c (): refix of r33536. Don't change behavior of Bignum#/.
+ [ruby-core:40429] [Bug #5490]
+
Tue Nov 22 10:46:57 2011 NARUSE, Yui <naruse@ruby-lang.org>
* numeric.c (ruby_float_step): improve floating point calculations.
diff --git a/bignum.c b/bignum.c
index 2d61bb37c0..ede52e1613 100644
--- a/bignum.c
+++ b/bignum.c
@@ -2781,14 +2781,13 @@ rb_big_divide(VALUE x, VALUE y, ID op)
case T_FLOAT:
{
- double div, dy = RFLOAT_VALUE(y);
- if (dy == 0.0) rb_num_zerodiv();
- div = rb_big2dbl(x) / dy;
if (op == '/') {
- return DBL2NUM(div);
+ return DBL2NUM(rb_big2dbl(x) / RFLOAT_VALUE(y));
}
else {
- return rb_dbl2big(div);
+ double dy = RFLOAT_VALUE(y);
+ if (dy == 0.0) rb_num_zerodiv();
+ return rb_dbl2big(rb_big2dbl(x) / dy);
}
}
diff --git a/test/ruby/test_bignum.rb b/test/ruby/test_bignum.rb
index 9256c7f3f4..8281aed7b2 100644
--- a/test/ruby/test_bignum.rb
+++ b/test/ruby/test_bignum.rb
@@ -268,6 +268,12 @@ class TestBignum < Test::Unit::TestCase
assert_equal(0, T32 / T64)
end
+ def test_divide
+ bug5490 = '[ruby-core:40429]'
+ assert_raise(ZeroDivisionError, bug5490) {T1024./(0)}
+ assert_equal(Float::INFINITY, T1024./(0.0), bug5490)
+ end
+
def test_div
assert_equal(T32.to_f, T32 / 1.0)
assert_raise(TypeError) { T32 / "foo" }