summaryrefslogtreecommitdiff
path: root/compile.c
diff options
context:
space:
mode:
authorYusuke Endoh <mame@ruby-lang.org>2019-07-15 00:30:35 +0900
committerYusuke Endoh <mame@ruby-lang.org>2019-07-15 00:30:35 +0900
commit970c12551efed86074d9c3440f82551795cbde6a (patch)
tree2fe8841ffee0ade104bb833fa7a4782d954529c1 /compile.c
parent9e3971c3ade4a2fd5c5d3123f9437fa3af352655 (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 28691fba8c..e136db3752 100644
--- a/compile.c
+++ b/compile.c
@@ -9363,6 +9363,7 @@ ibf_load_code(const struct ibf_load *load, const rb_iseq_t *iseq, const struct r
}
case TS_ISE:
FL_SET(iseq, ISEQ_MARKABLE_ISEQ);
+ /* fall through */
case TS_IC:
code[code_index] = (VALUE)&is_entries[(int)op];
break;