1
0
Fork 0

better readability

git-svn-id: svn://svn.lighttpd.net/xcache/trunk@553 c26eb9a1-5813-0410-bd6c-c2e55f420ca7
3.0
Xuefer 15 years ago
parent 3057e08df7
commit f9a44682c1

@ -1106,7 +1106,6 @@ static zend_op_array *xc_compile_php(xc_entry_data_php_t *php, zend_file_handle
{
zend_op_array *op_array;
int old_constinfo_cnt, old_funcinfo_cnt, old_classinfo_cnt;
int i;
zend_bool catched = 0;
/* {{{ compile */
@ -1254,8 +1253,11 @@ static zend_op_array *xc_compile_php(xc_entry_data_php_t *php, zend_file_handle
#ifndef ZEND_COMPILE_DELAYED_BINDING
/* {{{ find inherited classes that should be early-binding */
php->have_early_binding = 0;
for (i = 0; i < php->classinfo_cnt; i ++) {
php->classinfos[i].oplineno = -1;
{
int i;
for (i = 0; i < php->classinfo_cnt; i ++) {
php->classinfos[i].oplineno = -1;
}
}
xc_undo_pass_two(php->op_array TSRMLS_CC);

Loading…
Cancel
Save