Skip to content

Commit c945c39

Browse files
committed
Merge branch 'PHP-8.0'
* PHP-8.0: Fixed incorrect stack size calculation (sizeof(zval) == 16)
2 parents 9f23891 + 6fa4493 commit c945c39

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
@@ -8790,7 +8790,7 @@ static int zend_jit_push_call_frame(dasm_State **Dst, const zend_op *opline, con
87908790
| sub edx, dword [r0 + offsetof(zend_closure, func.op_array.last_var)]
87918791
| sub edx, dword [r0 + offsetof(zend_closure, func.op_array.T)]
87928792
}
8793-
| shl edx, 5
8793+
| shl edx, 4
87948794
|.if X64
87958795
| movsxd r2, edx
87968796
|.endif

0 commit comments

Comments
 (0)