Skip to content

Commit c52f46d

Browse files
committed
Fixed signed/unsigned comparison mess
1 parent f0f5c1e commit c52f46d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/opcache/jit/zend_jit_arm64.dasc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11975,9 +11975,9 @@ static int zend_jit_recv(dasm_State **Dst, const zend_op *opline, const zend_op_
1197511975
if (!exit_addr) {
1197611976
return 0;
1197711977
}
11978-
| blt &exit_addr
11978+
| blo &exit_addr
1197911979
} else {
11980-
| blt >1
11980+
| blo >1
1198111981
|.cold_code
1198211982
|1:
1198311983
if (JIT_G(trigger) == ZEND_JIT_ON_HOT_TRACE) {

0 commit comments

Comments
 (0)