Skip to content

Commit 4ffed6d

Browse files
committed
Merge branch 'PHP-8.0' into PHP-8.1
* PHP-8.0: JIT: Fix incorrect JIT prologur size for CLANG/x86 build
2 parents f07c193 + 6d5922b commit 4ffed6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/opcache/jit/zend_jit_x86.dasc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3453,7 +3453,7 @@ static int zend_jit_trace_link_to_root(dasm_State **Dst, zend_jit_trace_info *t,
34533453
#if defined(__x86_64__) || defined(_M_X64)
34543454
prologue_size = 17;
34553455
#else
3456-
prologue_size = 12;
3456+
prologue_size = 13;
34573457
#endif
34583458
}
34593459
link_addr = (const void*)((const char*)t->code_start + prologue_size);

0 commit comments

Comments
 (0)