From 3fa86105f7ae30e5dcf42c76d84217a1ce3d1390 Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Thu, 10 Dec 2015 18:25:29 +0100 Subject: [PATCH] Remove FETCH_STATIC_MEMBER flag --- Zend/zend_compile.c | 1 - Zend/zend_compile.h | 1 - 2 files changed, 2 deletions(-) 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 -- 2.50.1