From 22420b14536c02697b37149bd27b8f6a3d07e8a8 Mon Sep 17 00:00:00 2001 From: marcandre Date: Thu, 15 Sep 2011 17:13:51 +0000 Subject: * numeric.c (ruby_float_step): Avoid error on i386 and amd64. Patch by Vit Ondruch. Issue #4576. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33282 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- numeric.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'numeric.c') diff --git a/numeric.c b/numeric.c index 18f5e1cd1a..1701d1005e 100644 --- a/numeric.c +++ b/numeric.c @@ -1683,6 +1683,7 @@ ruby_float_step(VALUE from, VALUE to, VALUE step, int excl) double unit = NUM2DBL(step); double n = (end - beg)/unit; double err = (fabs(beg) + fabs(end) + fabs(end-beg)) / fabs(unit) * epsilon; + double im = 0.0; long i; if (isinf(unit)) { @@ -1691,7 +1692,8 @@ ruby_float_step(VALUE from, VALUE to, VALUE step, int excl) else { if (err>0.5) err=0.5; n = floor(n + err); - if (!excl || ((long)n)*unit+beg < end) n++; + im = ((long)n)*unit+beg; + if (!excl || im < end) n++; for (i=0; i