Fix merge mistake

This commit is contained in:
Nikita Popov 2019-12-10 09:03:44 +01:00
parent 7e028a41e2
commit 4313659bb9

View File

@ -224,8 +224,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;