mirror of
https://github.com/php/php-src.git
synced 2025-01-18 09:43:36 +08:00
New added opcodes don't need to be resloved
This commit is contained in:
parent
ba1cf321f3
commit
f604b61e39
@ -625,10 +625,10 @@ static void zend_resolve_fast_call(zend_op_array *op_array, zend_uint op_num TSR
|
||||
|
||||
static void zend_resolve_finally_calls(zend_op_array *op_array TSRMLS_DC)
|
||||
{
|
||||
zend_uint i;
|
||||
zend_uint i, j;
|
||||
zend_op *opline;
|
||||
|
||||
for (i = 0; i < op_array->last; i++) {
|
||||
for (i = 0, j = op_array->last; i < j; i++) {
|
||||
opline = op_array->opcodes + i;
|
||||
switch (opline->opcode) {
|
||||
case ZEND_RETURN:
|
||||
|
Loading…
Reference in New Issue
Block a user