1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Adjusted indents [ci skip]

This commit is contained in:
Nobuyoshi Nakada 2020-12-25 00:56:17 +09:00
parent 0356c3269a
commit d143b75f8e
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6

View file

@ -6379,7 +6379,7 @@ compile_case3(rb_iseq_t *iseq, LINK_ANCHOR *const ret, const NODE *const orig_no
LABEL *l1;
if (branch_id) {
ADD_INSN(body_seq, line, putnil);
ADD_INSN(body_seq, line, putnil);
}
l1 = NEW_LABEL(line);
ADD_LABEL(body_seq, l1);
@ -6428,7 +6428,7 @@ compile_case3(rb_iseq_t *iseq, LINK_ANCHOR *const ret, const NODE *const orig_no
ADD_INSNL(cond_seq, line, jump, endlabel);
ADD_INSN(cond_seq, line, putnil);
if (popped) {
ADD_INSN(cond_seq, line, putnil);
ADD_INSN(cond_seq, line, putnil);
}
}
else {
@ -6448,7 +6448,7 @@ compile_case3(rb_iseq_t *iseq, LINK_ANCHOR *const ret, const NODE *const orig_no
ADD_INSNL(cond_seq, nd_line(orig_node), jump, endlabel);
ADD_INSN(cond_seq, line, putnil);
if (popped) {
ADD_INSN(cond_seq, line, putnil);
ADD_INSN(cond_seq, line, putnil);
}
}