summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2020-07-28 04:16:16 +0300
committerDmitry Stogov <dmitry@zend.com>2020-07-28 04:16:16 +0300
commit2dbb4ecfa1d7e32ccce6591158391a62cf4cbe2f (patch)
tree29b9ea36066a23f07abcd97f5bc3592997b18983
parentfd56fd2279361384b5ba3688efa30d825886d881 (diff)
downloadphp-git-2dbb4ecfa1d7e32ccce6591158391a62cf4cbe2f.tar.gz
Avoid redundand EX(opline) initialization
-rw-r--r--ext/opcache/jit/zend_jit_x86.dasc2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/opcache/jit/zend_jit_x86.dasc b/ext/opcache/jit/zend_jit_x86.dasc
index 50ef080035..9229b278f1 100644
--- a/ext/opcache/jit/zend_jit_x86.dasc
+++ b/ext/opcache/jit/zend_jit_x86.dasc
@@ -9972,7 +9972,7 @@ static int zend_jit_free_cv(dasm_State **Dst, const zend_op *opline, const zend_
{
if (info & (MAY_BE_STRING|MAY_BE_ARRAY|MAY_BE_OBJECT|MAY_BE_RESOURCE|MAY_BE_REF)) {
uint32_t offset = EX_NUM_TO_VAR(var);
- | ZVAL_PTR_DTOR ZEND_ADDR_MEM_ZVAL(ZREG_FP, offset), info, 1, 1, opline
+ | ZVAL_PTR_DTOR ZEND_ADDR_MEM_ZVAL(ZREG_FP, offset), info, 1, 1, NULL
}
return 1;
}