From: Andi Gutmans Date: Thu, 6 Jul 2000 23:28:05 +0000 (+0000) Subject: - Make is_method_call() static and remove a couple of old lines X-Git-Tag: PRE_FILE_COMPILE_API_CHANGE~369 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=80121ead565bb91a40b4e2089ea31384471bbf5c;p=php - Make is_method_call() static and remove a couple of old lines --- diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index 778ab6d564..317212abf7 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -516,8 +516,6 @@ void do_begin_variable_parse(CLS_D) { zend_llist fetch_list; - /* zend_llist_init(&fetch_list, sizeof(int), NULL, 0); - zend_stack_push(&CG(bp_stack), (void *) &fetch_list, sizeof(zend_llist));*/ zend_llist_init(&fetch_list, sizeof(zend_op), NULL, 0); zend_stack_push(&CG(bp_stack), (void *) &fetch_list, sizeof(zend_llist)); } @@ -567,7 +565,7 @@ void do_end_variable_parse(int type, int arg_offset CLS_DC) } -zend_bool is_method_call(CLS_D) +static zend_bool is_method_call(CLS_D) { zend_llist *fetch_list_ptr; zend_llist_element *cur;