Skip to content

Commit cd89fa0

Browse files
committed
Fix calling convention
1 parent 8e63dfd commit cd89fa0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ext/opcache/jit/zend_jit_ir.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13125,7 +13125,7 @@ static int zend_jit_ffi_fetch_dim(zend_jit_ctx *jit,
1312513125

1312613126
if (opline->opcode == ZEND_FETCH_DIM_W || opline->opcode == ZEND_FETCH_DIM_RW) {
1312713127
jit_set_Z_PTR(jit, res_addr,
13128-
ir_CALL_2(IR_ADDR, ir_CONST_FC_FUNC(zend_ffi_cdata_create),
13128+
ir_CALL_2(IR_ADDR, ir_CONST_FUNC(zend_ffi_cdata_create),
1312913129
ptr, ir_CONST_ADDR(el_type)));
1313013130
jit_set_Z_TYPE_INFO(jit, res_addr, IS_OBJECT_EX);
1313113131
} else {
@@ -15015,7 +15015,7 @@ static int zend_jit_ffi_fetch_obj(zend_jit_ctx *jit,
1501515015

1501615016
if (opline->opcode == ZEND_FETCH_OBJ_W) {
1501715017
jit_set_Z_PTR(jit, res_addr,
15018-
ir_CALL_2(IR_ADDR, ir_CONST_FC_FUNC(zend_ffi_cdata_create),
15018+
ir_CALL_2(IR_ADDR, ir_CONST_FUNC(zend_ffi_cdata_create),
1501915019
ptr, ir_CONST_ADDR(field_type)));
1502015020
jit_set_Z_TYPE_INFO(jit, res_addr, IS_OBJECT_EX);
1502115021
} else {
@@ -15063,7 +15063,7 @@ static int zend_jit_ffi_fetch_sym(zend_jit_ctx *jit,
1506315063

1506415064
if (opline->opcode == ZEND_FETCH_OBJ_W) {
1506515065
jit_set_Z_PTR(jit, res_addr,
15066-
ir_CALL_2(IR_ADDR, ir_CONST_FC_FUNC(zend_ffi_cdata_create),
15066+
ir_CALL_2(IR_ADDR, ir_CONST_FUNC(zend_ffi_cdata_create),
1506715067
ptr, ir_CONST_ADDR(sym_type)));
1506815068
jit_set_Z_TYPE_INFO(jit, res_addr, IS_OBJECT_EX);
1506915069
} else {

0 commit comments

Comments
 (0)