mirror of
https://github.com/php/php-src.git
synced 2026-04-29 19:23:22 +02:00
Fixed incorrect ZEND_INIT_FCALL_BY_NAME -> ZEND_INIT_FCALL conversion
This commit is contained in:
@@ -83,9 +83,9 @@ static void optimize_func_calls(zend_op_array *op_array, zend_optimizer_ctx *ctx
|
||||
} else {
|
||||
ZEND_ASSERT(0);
|
||||
}
|
||||
} else if (opline->extended_value == 0 &&
|
||||
call_stack[call].opline &&
|
||||
} else if (call_stack[call].opline &&
|
||||
call_stack[call].opline->opcode == ZEND_INIT_FCALL_BY_NAME &&
|
||||
call_stack[call].opline->extended_value == 0 &&
|
||||
ZEND_OP2_IS_CONST_STRING(call_stack[call].opline)) {
|
||||
|
||||
zend_op *fcall = call_stack[call].opline;
|
||||
|
||||
Reference in New Issue
Block a user