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 2ef9214 commit f024af8Copy full SHA for f024af8
ext/opcache/jit/zend_jit_ir.c
@@ -12578,11 +12578,11 @@ static int zend_jit_ffi_read(zend_jit_ctx *jit,
12578
res_type = IS_LONG;
12579
break;
12580
case ZEND_FFI_TYPE_UINT64:
12581
- jit_set_Z_LVAL(jit, res_addr, ir_LOAD_U32(ptr));
+ jit_set_Z_LVAL(jit, res_addr, ir_LOAD_U64(ptr));
12582
12583
12584
case ZEND_FFI_TYPE_SINT64:
12585
- jit_set_Z_LVAL(jit, res_addr, ir_LOAD_I32(ptr));
+ jit_set_Z_LVAL(jit, res_addr, ir_LOAD_I64(ptr));
12586
12587
12588
#else
0 commit comments