summaryrefslogtreecommitdiff
path: root/Zend/zend_compile.c
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2002-10-18 21:19:27 +0000
committerAndi Gutmans <andi@php.net>2002-10-18 21:19:27 +0000
commitcf36abb2ebbd82e05eebf587fe891177e577d2da (patch)
treef334af3c440534a05ab346464e87627d4b9e925a /Zend/zend_compile.c
parent4b83b189fe38aa54b0356d0d8ac9c7ef99b8cd07 (diff)
downloadphp-git-cf36abb2ebbd82e05eebf587fe891177e577d2da.tar.gz
- Change opcode dispatch mechanism to use a function per opcode and use
- a lookup table using the opcode # to call the correct function. - Still have lots of tuning to do.
Diffstat (limited to 'Zend/zend_compile.c')
-rw-r--r--Zend/zend_compile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c
index 914e4484d6..8c7cf27a8f 100644
--- a/Zend/zend_compile.c
+++ b/Zend/zend_compile.c
@@ -81,7 +81,7 @@ void zend_init_compiler_data_structures(TSRMLS_D)
CG(in_compilation) = 0;
init_compiler_declarables(TSRMLS_C);
CG(throw_list) = NULL;
- zend_register_auto_global("GLOBALS", sizeof("GLOBALS")-1 TSRMLS_CC);
+ zend_register_auto_global("GLOBALS", sizeof("GLOBALS")-1 TSRMLS_CC);
CG(in_clone_method) = 0;
}