mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Fix indents [ci skip]
This commit is contained in:
parent
7529c53891
commit
8f3a36fb6e
2 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
2
iseq.c
2
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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue