summaryrefslogtreecommitdiff
path: root/compile.c
diff options
context:
space:
mode:
authorYusuke Endoh <mame@ruby-lang.org>2019-07-15 00:31:07 +0900
committerYusuke Endoh <mame@ruby-lang.org>2019-07-15 00:31:07 +0900
commit3201062adf7f98f645b659852bd9fa6f566cb1dd (patch)
treef855863c8ebfcf656305acb1aa184d5fc18bc802 /compile.c
parent970c12551efed86074d9c3440f82551795cbde6a (diff)
Add a /* fall through */ comment
Diffstat (limited to 'compile.c')
-rw-r--r--compile.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/compile.c b/compile.c
index e136db3752..9cba0b5d7e 100644
--- a/compile.c
+++ b/compile.c
@@ -2163,6 +2163,7 @@ iseq_set_sequence(rb_iseq_t *iseq, LINK_ANCHOR *const anchor)
case TS_ISE: /* inline storage entry */
/* Treated as an IC, but may contain a markable VALUE */
FL_SET(iseq, ISEQ_MARKABLE_ISEQ);
+ /* fall through */
case TS_IC: /* inline cache */
{
unsigned int ic_index = FIX2UINT(operands[j]);