ruby-changes:71081
From: Nobuyoshi <ko1@a...>
Date: Thu, 3 Feb 2022 11:22:00 +0900 (JST)
Subject: [ruby-changes:71081] 8f3a36fb6e (master): Fix indents [ci skip]
https://git.ruby-lang.org/ruby.git/commit/?id=8f3a36fb6e From 8f3a36fb6e40f9259cc2fcd182cddb7472f3be14 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada <nobu@r...> Date: Thu, 3 Feb 2022 11:21:41 +0900 Subject: Fix indents [ci skip] --- compile.c | 2 +- iseq.c | 2 +- 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) https://github.com/ruby/ruby/blob/trunk/compile.c#L9901 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) https://github.com/ruby/ruby/blob/trunk/iseq.c#L2895 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; -- cgit v1.2.1 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/