From: Yukihiro "Matz" Matsumoto Date: Thu, 7 Dec 2017 06:18:41 +0000 (+0900) Subject: Cancel df3507660 that does not do any good. X-Git-Tag: 1.4.0~93 X-Git-Url: https://repo.or.cz/mruby.git/commitdiff_plain/10ed730e4bd921cf4d8fe6f6d2e3cb3f0840f3b7 Cancel df3507660 that does not do any good. --- diff --git a/src/vm.c b/src/vm.c index c65d86d8b..45e05268c 100644 --- a/src/vm.c +++ b/src/vm.c @@ -743,13 +743,11 @@ mrb_yield_with_class(mrb_state *mrb, mrb_value b, mrb_int argc, const mrb_value if (MRB_PROC_CFUNC_P(p)) { val = MRB_PROC_CFUNC(p)(mrb, self); mrb->c->stack = mrb->c->ci->stackent; + cipop(mrb); } else { - ptrdiff_t cioff = mrb->c->ci - mrb->c->cibase; val = mrb_run(mrb, p, self); - mrb->c->ci = mrb->c->cibase + cioff; } - cipop(mrb); return val; }