From 70f83f35d089d0cafae12ae231a38541f5c8e41c Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Fri, 30 Nov 2012 13:39:23 +0400 Subject: . The VM stacks for passing function arguments and syntaticaly nested calls were merged into a single stack. The stack size needed for op_array execution is calculated at compile time and preallocated at once. As result all the stack push operatins don't require checks for stack overflow any more. . Generators implementation was improved using the new VM stack. Now it's a bit more clear and faster. --- Zend/zend_modules.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Zend/zend_modules.h') diff --git a/Zend/zend_modules.h b/Zend/zend_modules.h index 442535bc68..bfea3e0d22 100644 --- a/Zend/zend_modules.h +++ b/Zend/zend_modules.h @@ -33,7 +33,7 @@ #define ZEND_MODULE_INFO_FUNC_ARGS zend_module_entry *zend_module TSRMLS_DC #define ZEND_MODULE_INFO_FUNC_ARGS_PASSTHRU zend_module TSRMLS_CC -#define ZEND_MODULE_API_NO 20121113 +#define ZEND_MODULE_API_NO 20121128 #ifdef ZTS #define USING_ZTS 1 #else -- cgit v1.2.1