History log of /PHP-8.1/ext/opcache/tests/jit/assign_op_001.phpt (Results 1 – 1 of 1)
Revision Date Author Comments
# 6de8b08f 15-Sep-2021 Nikita Popov

Don't undef result operand if there is none

The mod_by_zero and negative_shift helper may also be used by
ASSIGN_OP, in which case there is not necessarily a result operand.
If the s

Don't undef result operand if there is none

The mod_by_zero and negative_shift helper may also be used by
ASSIGN_OP, in which case there is not necessarily a result operand.
If the stars aligned just right, this used to clobber other parts
of the call frame.

For these two helpers, check whether the result_type is TMP/VAR
before setting to UNDEF:

show more ...