History log of /PHP-8.1/Zend/tests/match/045.phpt (Results 1 – 1 of 1)
Revision Date Author Comments
# 493c91c7 04-Oct-2021 Nikita Popov

Start new block after loop free

In the attached test case we ended up not updating a leftover
MATCH jump in the unreachable_free block. There's different ways
this can be addressed,

Start new block after loop free

In the attached test case we ended up not updating a leftover
MATCH jump in the unreachable_free block. There's different ways
this can be addressed, but in this case we can just make sure that
a new block is started after the loop free, which will allow it
to be dropped as unreachable. We only need to retain the free
itself for live-range reconstruction.

Fixes oss-fuzz #39516.

show more ...