diff options
author | Andi Gutmans <andi@php.net> | 2004-07-15 22:59:54 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2004-07-15 22:59:54 +0000 |
commit | eb2e53be99f05b03e76e3d86669b8e5c24f7faaf (patch) | |
tree | 805f240787c6749889633e1c3110b475e8c4d31f /Zend/zend_alloc.h | |
parent | ce6717965e08daf8f8cbfc479155c821e288212b (diff) | |
download | php-git-eb2e53be99f05b03e76e3d86669b8e5c24f7faaf.tar.gz |
- Improve performance of zend_alloc by stopping the size from being a bit
- field.
Diffstat (limited to 'Zend/zend_alloc.h')
-rw-r--r-- | Zend/zend_alloc.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Zend/zend_alloc.h b/Zend/zend_alloc.h index 7be3456931..6e93d6abed 100644 --- a/Zend/zend_alloc.h +++ b/Zend/zend_alloc.h @@ -50,8 +50,7 @@ typedef struct _zend_mem_header { struct _zend_mem_header *pNext; struct _zend_mem_header *pLast; #endif - unsigned int size:31; - unsigned int cached:1; + unsigned int size; } zend_mem_header; typedef union _align_test { |