summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2018-06-30 19:49:29 +0200
committerNikita Popov <nikita.ppv@gmail.com>2018-06-30 19:50:07 +0200
commit2eb6a541a9d4141dcad427799cf8acbeba3f2777 (patch)
treea157d1843bbde672b615535d2fa676c23b1116ad
parentae04110032702622d59c21f9e615120d9479157a (diff)
downloadphp-git-2eb6a541a9d4141dcad427799cf8acbeba3f2777.tar.gz
Fix typo in compound dim assign op inference
Thankfully a harmless one, just makes inference results worse.
-rw-r--r--ext/opcache/Optimizer/zend_inference.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/opcache/Optimizer/zend_inference.c b/ext/opcache/Optimizer/zend_inference.c
index 9f930a1ab6..92813ec30f 100644
--- a/ext/opcache/Optimizer/zend_inference.c
+++ b/ext/opcache/Optimizer/zend_inference.c
@@ -2372,7 +2372,7 @@ static int zend_update_type_info(const zend_op_array *op_array,
if (opline->extended_value == ZEND_ASSIGN_DIM) {
if (opline->op1_type == IS_CV) {
- orig = assign_dim_result_type(orig, OP2_INFO(), tmp, opline->op1_type);
+ orig = assign_dim_result_type(orig, OP2_INFO(), tmp, opline->op2_type);
UPDATE_SSA_TYPE(orig, ssa_ops[i].op1_def);
COPY_SSA_OBJ_TYPE(ssa_ops[i].op1_use, ssa_ops[i].op1_def);
}