summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-11 13:52:35 +0000
committernagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-11 13:52:35 +0000
commit03ad9a258e6bb82e7351e617bb6c8dbabe142f44 (patch)
tree14584f77f6099ce55459a1e26b2fe1e09e1ab632
parent80f81024c3efa153620de8d0857da0820a09572b (diff)
merge revision(s) 53039: [Backport #11804]
* insns.def (opt_case_dispatch): avoid converting Infinity * test/ruby/test_optimization.rb (test_opt_case_dispatch_inf): new [ruby-dev:49423] [Bug #11804]' git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_2@53040 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog6
-rw-r--r--insns.def2
-rw-r--r--test/ruby/test_optimization.rb11
-rw-r--r--version.h6
4 files changed, 21 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 594e41e7bf..5bbfe00b97 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Fri Dec 11 22:41:15 2015 Eric Wong <e@80x24.org>
+
+ * insns.def (opt_case_dispatch): avoid converting Infinity
+ * test/ruby/test_optimization.rb (test_opt_case_dispatch_inf): new
+ [ruby-dev:49423] [Bug #11804]'
+
Thu Dec 10 00:23:07 2015 Rei Odaira <Rei.Odaira@gmail.com>
* configure.in: pthread_getattr_np is broken on AIX.
diff --git a/insns.def b/insns.def
index 999dc799c5..c38a25e4ae 100644
--- a/insns.def
+++ b/insns.def
@@ -1315,7 +1315,7 @@ opt_case_dispatch
switch(TYPE(key)) {
case T_FLOAT: {
double ival;
- if (modf(RFLOAT_VALUE(key), &ival) == 0.0) {
+ if (modf(RFLOAT_VALUE(key), &ival) == 0.0 && !isinf(ival)) {
key = FIXABLE(ival) ? LONG2FIX((long)ival) : rb_dbl2big(ival);
}
}
diff --git a/test/ruby/test_optimization.rb b/test/ruby/test_optimization.rb
index 9250f013c4..91b46cc98c 100644
--- a/test/ruby/test_optimization.rb
+++ b/test/ruby/test_optimization.rb
@@ -330,4 +330,15 @@ class TestRubyOptimization < Test::Unit::TestCase
end;
end
end
+
+ def test_opt_case_dispatch_inf
+ inf = 1.0/0.0
+ result = case inf
+ when 1 then 1
+ when 0 then 0
+ else
+ inf.to_i rescue nil
+ end
+ assert_nil result, '[ruby-dev:49423] [Bug #11804]'
+ end
end
diff --git a/version.h b/version.h
index 40c00db764..3d396d00e3 100644
--- a/version.h
+++ b/version.h
@@ -1,10 +1,10 @@
#define RUBY_VERSION "2.2.4"
-#define RUBY_RELEASE_DATE "2015-12-10"
-#define RUBY_PATCHLEVEL 226
+#define RUBY_RELEASE_DATE "2015-12-11"
+#define RUBY_PATCHLEVEL 227
#define RUBY_RELEASE_YEAR 2015
#define RUBY_RELEASE_MONTH 12
-#define RUBY_RELEASE_DAY 10
+#define RUBY_RELEASE_DAY 11
#include "ruby/version.h"