Skip to content

Commit 90b80c8

Browse files
committed
Fix trace range inference
1 parent 9fe5479 commit 90b80c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/opcache/jit/zend_jit_trace.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3043,6 +3043,7 @@ static void zend_jit_trace_update_condition_ranges(const zend_op *opline, const
30433043
case ZEND_CASE:
30443044
case ZEND_IS_IDENTICAL:
30453045
case ZEND_CASE_STRICT:
3046+
case ZEND_IS_NOT_IDENTICAL:
30463047
if (!exit_if_true) {
30473048
/* op1 == op2 */
30483049
if (ssa_op->op1_use >= 0) {
@@ -3060,7 +3061,6 @@ static void zend_jit_trace_update_condition_ranges(const zend_op *opline, const
30603061
}
30613062
break;
30623063
case ZEND_IS_NOT_EQUAL:
3063-
case ZEND_IS_NOT_IDENTICAL:
30643064
if (exit_if_true) {
30653065
/* op1 == op2 */
30663066
if (ssa_op->op1_use >= 0) {

0 commit comments

Comments
 (0)