aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--insns.def4
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 3d663b05ea..33987849ce 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Mon Jan 4 08:10:44 2016 Yuichiro Kaneko <yui-knk@ruby-lang.org>
+
+ * insns.def (opt_case_dispatch): Move a comment to the
+ appropriate position.
+ [ci skip]
+
Sun Jan 3 23:55:13 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
* lib/rubygems/security.rb (DIGEST_ALGORITHM, KEY_ALGORITHM):
diff --git a/insns.def b/insns.def
index df65aa8efd..40b0f9ade8 100644
--- a/insns.def
+++ b/insns.def
@@ -1266,10 +1266,10 @@ opt_case_dispatch
key = FIXABLE(ival) ? LONG2FIX((long)ival) : rb_dbl2big(ival);
}
}
- case T_TRUE:
+ case T_TRUE: /* fall through */
case T_FALSE:
case T_NIL:
- case T_SYMBOL: /* fall through */
+ case T_SYMBOL:
case T_FIXNUM:
case T_BIGNUM:
case T_STRING: