We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0faaaf5 commit 74f25bfCopy full SHA for 74f25bf
ext/opcache/jit/zend_jit_ir.c
@@ -12535,11 +12535,11 @@ static int zend_jit_ffi_read(zend_jit_ctx *jit,
12535
res_type = IS_LONG;
12536
break;
12537
case ZEND_FFI_TYPE_UINT64:
12538
- jit_set_Z_LVAL(jit, res_addr, ir_LOAD_U32(ptr));
+ jit_set_Z_LVAL(jit, res_addr, ir_LOAD_U64(ptr));
12539
12540
12541
case ZEND_FFI_TYPE_SINT64:
12542
- jit_set_Z_LVAL(jit, res_addr, ir_LOAD_I32(ptr));
+ jit_set_Z_LVAL(jit, res_addr, ir_LOAD_I64(ptr));
12543
12544
12545
#else
0 commit comments