Remove unnecessary branches in L_RAISE block

The previous `while` loop ends if the catch handler pointer `ch` is not `NULL`.

Supplement to #5843.
This commit is contained in:
dearblue
2023-04-05 21:52:21 +09:00
parent 35a3bab369
commit b46a852acb
-1
View File
@@ -2212,7 +2212,6 @@ RETRY_TRY_BLOCK:
}
}
if (ch == NULL) goto L_STOP;
if (FALSE) {
L_CATCH_TAGGED_BREAK: /* from THROW_TAGGED_BREAK() or UNWIND_ENSURE() */
ci = mrb->c->ci;