mirror of
https://github.com/php/php-src.git
synced 2025-08-19 08:49:28 +02:00
Micro optimization for better register allocation
This commit is contained in:
parent
0fa50fb95d
commit
cd5ea1619e
2 changed files with 2 additions and 2 deletions
|
@ -2854,7 +2854,7 @@ ZEND_VM_HANDLER(60, ZEND_DO_FCALL, ANY, ANY)
|
|||
zend_vm_stack_free_call_frame(call);
|
||||
|
||||
if (!RETURN_VALUE_USED(opline)) {
|
||||
zval_ptr_dtor(ret);
|
||||
zval_ptr_dtor(EX_VAR(opline->result.var));
|
||||
}
|
||||
|
||||
if (UNEXPECTED(should_change_scope)) {
|
||||
|
|
|
@ -602,7 +602,7 @@ static int ZEND_FASTCALL ZEND_DO_FCALL_SPEC_HANDLER(ZEND_OPCODE_HANDLER_ARGS)
|
|||
zend_vm_stack_free_call_frame(call);
|
||||
|
||||
if (!RETURN_VALUE_USED(opline)) {
|
||||
zval_ptr_dtor(ret);
|
||||
zval_ptr_dtor(EX_VAR(opline->result.var));
|
||||
}
|
||||
|
||||
if (UNEXPECTED(should_change_scope)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue