diff options
Diffstat (limited to 'Zend/zend_globals.h')
-rw-r--r-- | Zend/zend_globals.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Zend/zend_globals.h b/Zend/zend_globals.h index 45e6f52966..3feb64dd52 100644 --- a/Zend/zend_globals.h +++ b/Zend/zend_globals.h @@ -105,10 +105,6 @@ struct _zend_compiler_globals { zend_declarables declarables; - /* For extensions support */ - zend_bool extended_info; /* generate extension information for debugger/profiler */ - zend_bool handle_op_arrays; /* run op_arrays through op_array handlers */ - zend_bool unclean_shutdown; zend_bool ini_parser_unbuffered_errors; @@ -139,6 +135,8 @@ struct _zend_compiler_globals { HashTable *labels; zend_stack labels_stack; + zend_uint compiler_options; /* set of ZEND_COMPILE_* constants */ + zval *current_namespace; HashTable *current_import; |