diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2019-02-14 14:01:39 +0100 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2019-02-14 14:01:39 +0100 |
commit | adf2f39745e78fbb5e89802a2675b407d2ed5255 (patch) | |
tree | 76df83fb5881c032644de05d38d203ec9c6a394c /Zend/zend_execute.c | |
parent | 29d87caebfa69ba4183be516b1fd803b9f92846a (diff) | |
download | php-git-adf2f39745e78fbb5e89802a2675b407d2ed5255.tar.gz |
Fix build without global regs
Diffstat (limited to 'Zend/zend_execute.c')
-rw-r--r-- | Zend/zend_execute.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_execute.c b/Zend/zend_execute.c index 7fb7e44792..40a1c7362c 100644 --- a/Zend/zend_execute.c +++ b/Zend/zend_execute.c @@ -2692,7 +2692,7 @@ static zend_never_inline zend_bool zend_handle_fetch_obj_flags( return 1; } -static zend_always_inline void zend_fetch_property_address(zval *result, zval *container, uint32_t container_op_type, zval *prop_ptr, uint32_t prop_op_type, void **cache_slot, int type, uint32_t flags, zend_bool init_undef OPLINE_DC) +static zend_always_inline void zend_fetch_property_address(zval *result, zval *container, uint32_t container_op_type, zval *prop_ptr, uint32_t prop_op_type, void **cache_slot, int type, uint32_t flags, zend_bool init_undef OPLINE_DC EXECUTE_DATA_DC) { zval *ptr; @@ -2708,7 +2708,7 @@ static zend_always_inline void zend_fetch_property_address(zval *result, zval *c return; } - container = make_real_object(container, prop_ptr OPLINE_CC); + container = make_real_object(container, prop_ptr OPLINE_CC EXECUTE_DATA_CC); if (UNEXPECTED(!container)) { ZVAL_ERROR(result); return; |