From: Nikita Popov Date: Sat, 13 Sep 2014 20:25:58 +0000 (+0200) Subject: Drop superfluous opline for non-cv variables X-Git-Tag: PRE_NATIVE_TLS_MERGE~150^2~18^2~22 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ee75848b78c5337bed7166adb9a7be58a2d7fe49;p=php Drop superfluous opline for non-cv variables --- diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index f489d59dad..7a1822c1f6 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -3575,7 +3575,6 @@ static zend_op *zend_compile_simple_var_no_cv(znode *result, zend_ast *ast, uint zend_compile_expr(&name_node, name_ast TSRMLS_CC); - opline = get_next_op(CG(active_op_array) TSRMLS_CC); opline = zend_emit_op(result, ZEND_FETCH_R, &name_node, NULL TSRMLS_CC); opline->extended_value = ZEND_FETCH_LOCAL;