Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Zend/zend_compile.c
Original file line number Diff line number Diff line change
Expand Up @@ -12439,7 +12439,9 @@ static void zend_compile_stmt(zend_ast *ast) /* {{{ */
}
/* }}} */

static void zend_compile_expr_inner(znode *result, zend_ast *ast) /* {{{ */
/* Keep this out of zend_compile_expr(): the two form a recursion cycle, so inlining merges this
* frame into every nesting level of an expression, tripling the stack needed to compile it. */
static zend_never_inline void zend_compile_expr_inner(znode *result, zend_ast *ast) /* {{{ */
{
/* CG(zend_lineno) = ast->lineno; */
CG(zend_lineno) = zend_ast_get_lineno(ast);
Expand Down
Loading