1
0
mirror of https://github.com/php/php-src.git synced 2026-04-21 06:51:18 +02:00

Merge branch 'PHP-7.4'

* PHP-7.4:
  Fix merge mistake
This commit is contained in:
Nikita Popov
2019-12-10 09:04:01 +01:00

View File

@@ -222,8 +222,6 @@ static zend_always_inline zend_bool zend_ssa_is_no_val_use(const zend_op *opline
if (ssa_op->result_use == var
&& opline->opcode != ZEND_ADD_ARRAY_ELEMENT
&& opline->opcode != ZEND_ADD_ARRAY_UNPACK) {
}
if (ssa_op->result_use == var && opline->opcode != ZEND_ADD_ARRAY_ELEMENT) {
return ssa_op->op1_use != var && ssa_op->op2_use != var;
}
return 0;