summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2022-02-03 11:21:41 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2022-02-03 11:21:41 +0900
commit8f3a36fb6e40f9259cc2fcd182cddb7472f3be14 (patch)
treeec660f7529f9c854c96e7de81ce39aa9564e9050
parent7529c538915cd1765b0a362ca64e8f8ff439d7fc (diff)
Fix indents [ci skip]
-rw-r--r--compile.c2
-rw-r--r--iseq.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/compile.c b/compile.c
index 4b7d0e5a22..9c96ce7f8e 100644
--- a/compile.c
+++ b/compile.c
@@ -9901,7 +9901,7 @@ insn_data_to_s_detail(INSN *iobj)
break;
case TS_IC: /* inline cache */
case TS_IVC: /* inline ivar cache */
- case TS_ICVARC: /* inline cvar cache */
+ case TS_ICVARC: /* inline cvar cache */
case TS_ISE: /* inline storage entry */
rb_str_catf(str, "<ic:%d>", FIX2INT(OPERAND_AT(iobj, j)));
break;
diff --git a/iseq.c b/iseq.c
index a2eb09f00f..d0afe535ca 100644
--- a/iseq.c
+++ b/iseq.c
@@ -2895,7 +2895,7 @@ iseq_data_to_ary(const rb_iseq_t *iseq)
break;
case TS_IC:
case TS_IVC:
- case TS_ICVARC:
+ case TS_ICVARC:
case TS_ISE:
{
union iseq_inline_storage_entry *is = (union iseq_inline_storage_entry *)*seq;