History log of /PHP-8.2/Zend/tests/unreachable_phi_cycle.phpt (Results 1 – 1 of 1)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# ddf89102 27-Sep-2021 Nikita Popov

Fix DCE of unreachable phi in cycle

We can't remove a trivial phi of the form x = phi(x), because we
don't have a replacement value. We could drop the whole block
though. SCCP would

Fix DCE of unreachable phi in cycle

We can't remove a trivial phi of the form x = phi(x), because we
don't have a replacement value. We could drop the whole block
though. SCCP would normally do this, but in this particular case
we only determine non-reachability based on type information.

Fixes oss-fuzz #39316.

show more ...