From: Nikita Popov Date: Thu, 10 Dec 2015 17:25:29 +0000 (+0100) Subject: Remove FETCH_STATIC_MEMBER flag X-Git-Tag: php-7.1.0alpha1~676 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3fa86105f7ae30e5dcf42c76d84217a1ce3d1390;p=php Remove FETCH_STATIC_MEMBER flag --- diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index a87797bca5..363319e37b 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -2626,7 +2626,6 @@ zend_op *zend_compile_static_prop_common(znode *result, zend_ast *ast, uint32_t } else { SET_NODE(opline->op2, &class_node); } - opline->extended_value |= ZEND_FETCH_STATIC_MEMBER; return opline; } diff --git a/Zend/zend_compile.h b/Zend/zend_compile.h index c4a5053ba6..188339c37b 100644 --- a/Zend/zend_compile.h +++ b/Zend/zend_compile.h @@ -892,7 +892,6 @@ ZEND_API void zend_assert_valid_class_name(const zend_string *const_name); #define ZEND_FETCH_GLOBAL 0x00000000 #define ZEND_FETCH_LOCAL 0x10000000 #define ZEND_FETCH_STATIC 0x20000000 -#define ZEND_FETCH_STATIC_MEMBER 0x30000000 #define ZEND_FETCH_GLOBAL_LOCK 0x40000000 #define ZEND_FETCH_LEXICAL 0x50000000