From cf36abb2ebbd82e05eebf587fe891177e577d2da Mon Sep 17 00:00:00 2001 From: Andi Gutmans Date: Fri, 18 Oct 2002 21:19:27 +0000 Subject: - 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. --- Zend/zend_compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Zend/zend_compile.c') 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; } -- cgit v1.2.1