From: Anatol Belski Date: Fri, 12 Sep 2014 14:23:24 +0000 (+0200) Subject: reduce the struct size by 8 byte on 64 bit X-Git-Tag: PRE_NATIVE_TLS_MERGE~150^2~18^2~43 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5d5a70205cf22192da63da8832a1ee1269b2abba;p=php reduce the struct size by 8 byte on 64 bit --- diff --git a/Zend/zend_API.h b/Zend/zend_API.h index 616934fcd2..c045676b4e 100644 --- a/Zend/zend_API.h +++ b/Zend/zend_API.h @@ -46,10 +46,10 @@ typedef struct _zend_fcall_info { zval function_name; zend_array *symbol_table; zval *retval; - uint32_t param_count; zval *params; zend_object *object; zend_bool no_separation; + uint32_t param_count; } zend_fcall_info; typedef struct _zend_fcall_info_cache {