Skip to content

Commit e984a57

Browse files
committed
Revert "Attempt to fix JIT"
This reverts commit fecbf45.
1 parent dee9a44 commit e984a57

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

ext/opcache/jit/zend_jit.c

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2396,8 +2396,7 @@ static int zend_jit(const zend_op_array *op_array, zend_ssa *ssa, const zend_op
23962396
}
23972397
if (!(op1_info & MAY_BE_LONG)
23982398
|| !(op2_info & MAY_BE_LONG)) {
2399-
/* Might emit deprecation notices */
2400-
goto jit_failure;
2399+
break;
24012400
}
24022401
res_addr = RES_REG_ADDR();
24032402
if (Z_MODE(res_addr) != IS_REG
@@ -2563,8 +2562,7 @@ static int zend_jit(const zend_op_array *op_array, zend_ssa *ssa, const zend_op
25632562
|| opline->extended_value == ZEND_MOD) {
25642563
if (!(op1_info & MAY_BE_LONG)
25652564
|| !(op2_info & MAY_BE_LONG)) {
2566-
/* Might emit deprecation notices */
2567-
goto jit_failure;
2565+
break;
25682566
}
25692567
} else if (opline->extended_value == ZEND_CONCAT) {
25702568
if (!(op1_info & MAY_BE_STRING)

0 commit comments

Comments
 (0)