From: Dmitry Stogov Date: Mon, 16 May 2016 09:41:24 +0000 (+0300) Subject: Extend CAL_FLAGS from 8-bit to 16-bit X-Git-Tag: php-7.1.0alpha1~122 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=054446a25f1a07788ac471c5f767834c9e116d42;p=php Extend CAL_FLAGS from 8-bit to 16-bit --- diff --git a/Zend/zend_compile.h b/Zend/zend_compile.h index 81fb6c7a03..61e537e64a 100644 --- a/Zend/zend_compile.h +++ b/Zend/zend_compile.h @@ -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)