File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -13894,8 +13894,7 @@ static int zend_jit_fetch_obj(zend_jit_ctx *jit,
13894
13894
jit_SET_EX_OPLINE(jit, opline);
13895
13895
13896
13896
if (opline->opcode != ZEND_FETCH_OBJ_IS) {
13897
- if (((res_info & MAY_BE_GUARD) && JIT_G(current_frame) && prop_info)
13898
- || Z_MODE(res_addr) == IS_REG) {
13897
+ if (Z_MODE(res_addr) == IS_REG) {
13899
13898
ir_ref val_addr = ir_CALL_2(IR_ADDR, ir_CONST_FC_FUNC(zend_jit_fetch_obj_r_dynamic_ex),
13900
13899
obj_ref, offset_ref);
13901
13900
ir_END_PHI_list(end_values, val_addr);
@@ -13905,8 +13904,7 @@ static int zend_jit_fetch_obj(zend_jit_ctx *jit,
13905
13904
ir_END_list(end_inputs);
13906
13905
}
13907
13906
} else {
13908
- if (((res_info & MAY_BE_GUARD) && JIT_G(current_frame) && prop_info)
13909
- || Z_MODE(res_addr) == IS_REG) {
13907
+ if (Z_MODE(res_addr) == IS_REG) {
13910
13908
ir_ref val_addr = ir_CALL_2(IR_ADDR, ir_CONST_FC_FUNC(zend_jit_fetch_obj_is_dynamic_ex),
13911
13909
obj_ref, offset_ref);
13912
13910
ir_END_PHI_list(end_values, val_addr);
You can’t perform that action at this time.
0 commit comments