Skip to content

Commit e01586a

Browse files
committed
Merge branch 'PHP-8.1'
* PHP-8.1: Fix incorrect condition introdused in 7cf6f17
2 parents 7e32033 + af75eab commit e01586a

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
@@ -1665,7 +1665,7 @@ static void zend_jit_add_hint(zend_lifetime_interval **intervals, int dst, int s
16651665
dst = intervals[dst]->hint->ssa_var;
16661666
}
16671667
}
1668-
if (dst == src) {
1668+
if (dst != src) {
16691669
intervals[dst]->hint = intervals[src];
16701670
}
16711671
}

0 commit comments

Comments
 (0)