Skip to content

Commit d66d477

Browse files
committed
Fix incorrect condition introdused in 7cf6f17
1 parent 7cf6f17 commit d66d477

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/opcache/jit/zend_jit.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1107,7 +1107,7 @@ static void zend_jit_add_hint(zend_lifetime_interval **intervals, int dst, int s
11071107
dst = intervals[dst]->hint->ssa_var;
11081108
}
11091109
}
1110-
if (dst == src) {
1110+
if (dst != src) {
11111111
intervals[dst]->hint = intervals[src];
11121112
}
11131113
}

0 commit comments

Comments
 (0)