Skip to content

Commit e14dad7

Browse files
committed
Fixed 32-bit build
1 parent 71743e1 commit e14dad7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/opcache/jit/zend_jit_ir.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11245,7 +11245,7 @@ static int zend_jit_zval_copy_deref(zend_jit_ctx *jit, zend_jit_addr res_addr, z
1124511245
type = ir_PHI_2(IR_U32, type2, type);
1124611246
ptr = ir_PHI_2(IR_ADDR, ptr2, ptr);
1124711247
#if SIZEOF_ZEND_LONG == 4
11248-
val = ir_PHI_2(val2, val);
11248+
val = ir_PHI_2(IR_ADDR, val2, val);
1124911249
#endif
1125011250

1125111251
// JIT: Z_ADDREF_P(val);

0 commit comments

Comments
 (0)