Extend CAL_FLAGS from 8-bit to 16-bit

This commit is contained in:
Dmitry Stogov 2016-05-16 12:41:24 +03:00
parent 414c4c6776
commit 054446a25f

View File

@ -473,7 +473,7 @@ struct _zend_execute_data {
#define ZEND_CALL_RELEASE_THIS (1 << 6)
#define ZEND_CALL_ALLOCATED (1 << 7)
#define ZEND_CALL_INFO_SHIFT 24
#define ZEND_CALL_INFO_SHIFT 16
#define ZEND_CALL_INFO(call) \
(Z_TYPE_INFO((call)->This) >> ZEND_CALL_INFO_SHIFT)