Commit d8244889 authored by dearblue's avatar dearblue

Remove unnecessary `ci0` variables; ref #5272

parent cee916ab
......@@ -1939,10 +1939,8 @@ RETRY_TRY_BLOCK:
}
if (mrb->exc) {
mrb_callinfo *ci0;
L_RAISE:
ci0 = ci = mrb->c->ci;
ci = mrb->c->ci;
if (ci == mrb->c->cibase) {
ch = catch_handler_find(mrb, ci, pc, MRB_CATCH_FILTER_ALL);
if (ch == NULL) goto L_FTOP;
......@@ -1979,7 +1977,7 @@ RETRY_TRY_BLOCK:
if (ch == NULL) goto L_STOP;
if (FALSE) {
L_CATCH_TAGGED_BREAK: /* from THROW_TAGGED_BREAK() or UNWIND_ENSURE() */
ci = ci0 = mrb->c->ci;
ci = mrb->c->ci;
}
proc = ci->proc;
irep = proc->body.irep;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment