Reorder fields for most often access pattern

This commit is contained in:
Dmitry Stogov 2014-11-17 14:06:50 +03:00
parent 269470e65e
commit 76019b86c0

View File

@ -145,9 +145,9 @@ struct _zend_string {
};
typedef struct _Bucket {
zval val;
zend_ulong h; /* hash value (or numeric index) */
zend_string *key; /* string key or NULL for numerics */
zval val;
} Bucket;
typedef struct _HashTable {