Skip to content

Commit 4743c7a

Browse files
committed
JIT/ARM64: Fixed incorrect trace linking.
1 parent 353f963 commit 4743c7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/opcache/jit/zend_jit_arm64.dasc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2965,7 +2965,7 @@ static int zend_jit_patch(const void *code, size_t size, uint32_t jmp_table_size
29652965

29662966
end = (uint8_t*)code;
29672967
p = end + size;
2968-
while (p >= end) {
2968+
while (p > end) {
29692969
uint32_t *ins_ptr;
29702970
uint32_t ins;
29712971

0 commit comments

Comments
 (0)