diff options
Diffstat (limited to 'lang/php56/files/patch-Zend_zend__execute.h')
-rw-r--r-- | lang/php56/files/patch-Zend_zend__execute.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/lang/php56/files/patch-Zend_zend__execute.h b/lang/php56/files/patch-Zend_zend__execute.h deleted file mode 100644 index 1c02758b44d9..000000000000 --- a/lang/php56/files/patch-Zend_zend__execute.h +++ /dev/null @@ -1,18 +0,0 @@ ---- Zend/zend_execute.h.orig 2018-02-27 23:15:25 UTC -+++ Zend/zend_execute.h -@@ -71,6 +71,15 @@ ZEND_API int zend_eval_stringl_ex(char *str, int str_l - ZEND_API char * zend_verify_arg_class_kind(const zend_arg_info *cur_arg_info, ulong fetch_type, const char **class_name, zend_class_entry **pce TSRMLS_DC); - ZEND_API int zend_verify_arg_error(int error_type, const zend_function *zf, zend_uint arg_num, const char *need_msg, const char *need_kind, const char *given_msg, const char *given_kind TSRMLS_DC); - -+static zend_always_inline temp_variable *EX_TMP_VAR(void *ex, int n) -+{ -+ return (temp_variable *)((zend_uintptr_t)ex + n); -+} -+static inline temp_variable *EX_TMP_VAR_NUM(void *ex, int n) -+{ -+ return (temp_variable *)((zend_uintptr_t)ex - (1 + n) * sizeof(temp_variable)); -+} -+ - static zend_always_inline void i_zval_ptr_dtor(zval *zval_ptr ZEND_FILE_LINE_DC TSRMLS_DC) - { - if (!Z_DELREF_P(zval_ptr)) { |