1
0
mirror of https://github.com/php/php-src.git synced 2026-03-29 19:52:20 +02:00

Added missing side exit

This commit is contained in:
Dmitry Stogov
2020-10-14 01:17:39 +03:00
parent 4da2bebd41
commit 06bb1feb09

View File

@@ -5533,7 +5533,9 @@ static int zend_jit_fetch_dimension_address_inner(dasm_State **Dst, const zend_o
| // retval = Z_INDIRECT_P(retval);
| GET_Z_PTR r0, r0
| IF_NOT_Z_TYPE r0, IS_UNDEF, >8
if (type == BP_VAR_IS && not_found_exit_addr) {
if (JIT_G(trigger) == ZEND_JIT_ON_HOT_TRACE && type == BP_VAR_R) {
| jmp &exit_addr
} else if (type == BP_VAR_IS && not_found_exit_addr) {
| jmp &not_found_exit_addr
}
|2: