We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8165e72 commit 79d4e84Copy full SHA for 79d4e84
1 file changed
Zend/zend_ast.c
@@ -1141,7 +1141,7 @@ static zend_result ZEND_FASTCALL zend_ast_evaluate_inner(
1141
zend_class_entry *called_scope = NULL;
1142
1143
zend_ast *args_ast = zend_ast_call_get_args(ast);
1144
- ZEND_ASSERT(args_ast && args_ast->kind == ZEND_AST_CALLABLE_CONVERT);
+ ZEND_ASSERT(args_ast->kind == ZEND_AST_CALLABLE_CONVERT);
1145
1146
zend_ast_fcc *fcc_ast = (zend_ast_fcc*)args_ast;
1147
@@ -3084,5 +3084,6 @@ zend_ast * ZEND_FASTCALL zend_ast_call_get_args(zend_ast *ast)
3084
return ast->child[2];
3085
}
3086
3087
+ ZEND_UNREACHABLE();
3088
return NULL;
3089
0 commit comments