Skip to content

Commit 2dbb4ec

Browse files
committed
Avoid redundand EX(opline) initialization
1 parent fd56fd2 commit 2dbb4ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/opcache/jit/zend_jit_x86.dasc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9972,7 +9972,7 @@ static int zend_jit_free_cv(dasm_State **Dst, const zend_op *opline, const zend_
99729972
{
99739973
if (info & (MAY_BE_STRING|MAY_BE_ARRAY|MAY_BE_OBJECT|MAY_BE_RESOURCE|MAY_BE_REF)) {
99749974
uint32_t offset = EX_NUM_TO_VAR(var);
9975-
| ZVAL_PTR_DTOR ZEND_ADDR_MEM_ZVAL(ZREG_FP, offset), info, 1, 1, opline
9975+
| ZVAL_PTR_DTOR ZEND_ADDR_MEM_ZVAL(ZREG_FP, offset), info, 1, 1, NULL
99769976
}
99779977
return 1;
99789978
}

0 commit comments

Comments
 (0)