From 5c40c88a3e3361b77662b3f699fbffeb32663ce3 Mon Sep 17 00:00:00 2001 From: wanabe Date: Sun, 9 Aug 2020 17:58:01 +0900 Subject: Adjust sp for `case ... in a: 0 ... end` --- compile.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'compile.c') diff --git a/compile.c b/compile.c index 9780f6e485..f2ab7c3113 100644 --- a/compile.c +++ b/compile.c @@ -6111,12 +6111,14 @@ iseq_compile_pattern_each(rb_iseq_t *iseq, LINK_ANCHOR *const ret, const NODE *c ADD_INSN(ret, line, pop); ADD_INSNL(ret, line, jump, matched); + ADD_INSN(ret, line, putnil); ADD_LABEL(ret, type_error); ADD_INSN1(ret, line, putspecialobject, INT2FIX(VM_SPECIAL_OBJECT_VMCORE)); ADD_INSN1(ret, line, putobject, rb_eTypeError); ADD_INSN1(ret, line, putobject, rb_fstring_lit("deconstruct_keys must return Hash")); ADD_SEND(ret, line, id_core_raise, INT2FIX(2)); + ADD_INSN(ret, line, pop); ADD_LABEL(ret, match_failed); ADD_INSN(ret, line, pop); -- cgit v1.2.3