From: Dmitry Stogov Date: Tue, 2 Jul 2019 08:03:22 +0000 (+0300) Subject: Fixed build without global register variables X-Git-Tag: php-7.4.0alpha3~81 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=baa883d3fc442fd2ef1ca66eed6416780cdd98b6;p=php Fixed build without global register variables --- diff --git a/Zend/zend_execute.c b/Zend/zend_execute.c index 0eece43961..e10832fd5d 100644 --- a/Zend/zend_execute.c +++ b/Zend/zend_execute.c @@ -2004,7 +2004,7 @@ static zend_never_inline ZEND_COLD void ZEND_FASTCALL zend_use_new_element_for_s zend_throw_error(NULL, "[] operator not supported for strings"); } -static zend_never_inline zend_uchar slow_index_convert(const zval *dim, zend_value *value) +static zend_never_inline zend_uchar slow_index_convert(const zval *dim, zend_value *value EXECUTE_DATA_DC) { switch (Z_TYPE_P(dim)) { case IS_UNDEF: @@ -2115,7 +2115,7 @@ str_index: goto try_again; } else { zend_value val; - zend_uchar t = slow_index_convert(dim, &val); + zend_uchar t = slow_index_convert(dim, &val EXECUTE_DATA_CC); if (t == IS_STRING) { offset_key = val.str;