diff options
author | Nobuyoshi Nakada <[email protected]> | 2024-01-08 00:50:41 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2024-01-08 00:50:41 +0900 |
commit | c30b8ae947e4e0e01df74b07282b27b1b1c70df8 (patch) | |
tree | 3ea69f4cc26dee64542b0230aa1fab17a45d1182 /compile.c | |
parent | 76c20b06aa16686d047af5cb21300602153e0e46 (diff) |
Adjust styles and indents [ci skip]
Diffstat (limited to 'compile.c')
-rw-r--r-- | compile.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -2680,7 +2680,7 @@ iseq_set_sequence(rb_iseq_t *iseq, LINK_ANCHOR *const anchor) break; } - case TS_CALLDATA: + case TS_CALLDATA: { const struct rb_callinfo *source_ci = (const struct rb_callinfo *)operands[j]; assert(ISEQ_COMPILE_DATA(iseq)->ci_index <= body->ci_size); @@ -3880,7 +3880,8 @@ iseq_peephole_optimize(rb_iseq_t *iseq, LINK_ELEMENT *list, const int do_tailcal if ((flag & VM_CALL_ARGS_SPLAT) && !(flag & (VM_CALL_KW_SPLAT|VM_CALL_ARGS_BLOCKARG))) { OPERAND_AT(iobj, 0) = Qfalse; } - } else if (IS_NEXT_INSN_ID(niobj, getlocal) || IS_NEXT_INSN_ID(niobj, getinstancevariable)) { + } + else if (IS_NEXT_INSN_ID(niobj, getlocal) || IS_NEXT_INSN_ID(niobj, getinstancevariable)) { niobj = niobj->next; if (IS_NEXT_INSN_ID(niobj, send)) { |