Skip to content

Commit af75eab

Browse files
committed
Merge branch 'PHP-8.0' into PHP-8.1
* PHP-8.0: Fix incorrect condition introdused in 7cf6f17
2 parents b769336 + d66d477 commit af75eab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/opcache/jit/zend_jit.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1681,7 +1681,7 @@ static void zend_jit_add_hint(zend_lifetime_interval **intervals, int dst, int s
16811681
dst = intervals[dst]->hint->ssa_var;
16821682
}
16831683
}
1684-
if (dst == src) {
1684+
if (dst != src) {
16851685
intervals[dst]->hint = intervals[src];
16861686
}
16871687
}

0 commit comments

Comments
 (0)