mirror of
https://github.com/php/php-src.git
synced 2026-04-25 08:58:28 +02:00
2ec8d37eb4
If there's a try-finally where the try_op starts on a basic block with a single JMP, and the JMP optimization causes that basic block to become unreachable, then we update try_op. In this case, there is no catch_op, so try_op is erroneously set to 0, we should instead set it to `b->start`. Closes GH-18110.