Skip to content

Commit fbf4e19

Browse files
committed
Fixed regression intoduced by 76c41d2
1 parent 98908db commit fbf4e19

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

ext/opcache/jit/zend_jit_arm64.dasc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14933,6 +14933,7 @@ static bool zend_jit_fetch_indirect_var(dasm_State **Dst, const zend_op *opline,
1493314933
(opline-1)->result_type != IS_VAR ||
1493414934
(opline-1)->result.var != opline->op1.var ||
1493514935
(opline-1)->op1_type == IS_VAR ||
14936+
(opline-1)->op2_type == IS_VAR ||
1493614937
(opline-1)->op2_type == IS_TMP_VAR) {
1493714938
| GET_ZVAL_PTR FCARG1x, var_addr, TMP1
1493814939
} else if ((opline-1)->opcode == ZEND_FETCH_DIM_W || (opline-1)->opcode == ZEND_FETCH_DIM_RW) {

ext/opcache/jit/zend_jit_x86.dasc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15886,6 +15886,7 @@ static bool zend_jit_fetch_indirect_var(dasm_State **Dst, const zend_op *opline,
1588615886
(opline-1)->result_type != IS_VAR ||
1588715887
(opline-1)->result.var != opline->op1.var ||
1588815888
(opline-1)->op1_type == IS_VAR ||
15889+
(opline-1)->op2_type == IS_VAR ||
1588915890
(opline-1)->op2_type == IS_TMP_VAR) {
1589015891
| GET_ZVAL_PTR FCARG1a, var_addr
1589115892
} else if ((opline-1)->opcode == ZEND_FETCH_DIM_W || (opline-1)->opcode == ZEND_FETCH_DIM_RW) {

0 commit comments

Comments
 (0)