summaryrefslogtreecommitdiff
path: root/Zend/zend_compile.c
diff options
context:
space:
mode:
authorBob Weinand <bobwei9@hotmail.com>2016-04-21 21:51:50 +0200
committerBob Weinand <bobwei9@hotmail.com>2016-04-21 21:51:50 +0200
commit261eb5cc891735706d6c4c2f6fd43b1604751e39 (patch)
tree6cb5c27b01894fdb8ea65c4e84108f1cc2dd9284 /Zend/zend_compile.c
parent55f01863358d1d34d6abf1f37c27261208cfe965 (diff)
parent69efeb1223916b73cc767d4c17069c8bee49365e (diff)
downloadphp-git-261eb5cc891735706d6c4c2f6fd43b1604751e39.tar.gz
Merge branch 'PHP-7.0'
Diffstat (limited to 'Zend/zend_compile.c')
-rw-r--r--Zend/zend_compile.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c
index af2d2e95cb..c99cb686bf 100644
--- a/Zend/zend_compile.c
+++ b/Zend/zend_compile.c
@@ -7869,6 +7869,10 @@ void zend_eval_const_expr(zend_ast **ast_ptr) /* {{{ */
}
break;
case ZEND_AST_COALESCE:
+ /* Set isset fetch indicator here, opcache disallows runtime altering of the AST */
+ if (ast->child[0]->kind == ZEND_AST_DIM) {
+ ast->child[0]->attr = ZEND_DIM_IS;
+ }
zend_eval_const_expr(&ast->child[0]);
if (ast->child[0]->kind != ZEND_AST_ZVAL) {
@@ -7921,6 +7925,11 @@ void zend_eval_const_expr(zend_ast **ast_ptr) /* {{{ */
zend_error_noreturn(E_COMPILE_ERROR, "Cannot use [] for reading");
}
+ /* Set isset fetch indicator here, opcache disallows runtime altering of the AST */
+ if (ast->attr == ZEND_DIM_IS && ast->child[0]->kind == ZEND_AST_DIM) {
+ ast->child[0]->attr = ZEND_DIM_IS;
+ }
+
zend_eval_const_expr(&ast->child[0]);
zend_eval_const_expr(&ast->child[1]);
if (ast->child[0]->kind != ZEND_AST_ZVAL || ast->child[1]->kind != ZEND_AST_ZVAL) {