diff options
| author | Dmitry Stogov <dmitry@zend.com> | 2020-01-31 14:50:41 +0300 |
|---|---|---|
| committer | Dmitry Stogov <dmitry@zend.com> | 2020-01-31 14:50:41 +0300 |
| commit | 6b862e82d9363c2b25ebb762cee7bf8efd3c5bc7 (patch) | |
| tree | 69f7c3580f055cfd7c6581a8ea41d689941e17c7 | |
| parent | 08d2d9257dfa4b08a5972461f8bdbc03b81301a8 (diff) | |
| download | php-git-6b862e82d9363c2b25ebb762cee7bf8efd3c5bc7.tar.gz | |
These EG(current_execute_data) = EX(prev_execute_data) assignments are useless now
| -rw-r--r-- | ext/opcache/jit/zend_jit_vm_helpers.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/opcache/jit/zend_jit_vm_helpers.c b/ext/opcache/jit/zend_jit_vm_helpers.c index 346d50ec59..9862fd1b42 100644 --- a/ext/opcache/jit/zend_jit_vm_helpers.c +++ b/ext/opcache/jit/zend_jit_vm_helpers.c @@ -48,7 +48,6 @@ ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL zend_jit_leave_nested_func_helper(uint32_t if (UNEXPECTED(call_info & ZEND_CALL_HAS_SYMBOL_TABLE)) { zend_clean_and_cache_symbol_table(EX(symbol_table)); } - EG(current_execute_data) = EX(prev_execute_data); zend_vm_stack_free_extra_args_ex(call_info, execute_data); if (UNEXPECTED(call_info & ZEND_CALL_RELEASE_THIS)) { @@ -88,7 +87,6 @@ ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL zend_jit_leave_top_func_helper(uint32_t ca } zend_vm_stack_free_extra_args_ex(call_info, execute_data); } - EG(current_execute_data) = EX(prev_execute_data); if (UNEXPECTED(call_info & ZEND_CALL_CLOSURE)) { OBJ_RELEASE(ZEND_CLOSURE_OBJECT(EX(func))); } |
