Skip to content

Commit 1556723

Browse files
committed
Fix build
1 parent 95c9cd6 commit 1556723

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ext/opcache/jit/zend_jit_x86.dasc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9280,7 +9280,7 @@ static int zend_jit_init_fcall_guard(dasm_State **Dst, uint32_t level, const zen
92809280
| jne &exit_addr
92819281
#ifdef _WIN32
92829282
} else if (func->type == ZEND_INTERNAL_FUNCTION) {
9283-
const zif_handler *handler = func->internal_function.handler;
9283+
const zif_handler handler = func->internal_function.handler;
92849284

92859285
| .if X64
92869286
|| if (!IS_SIGNED_32BIT(handler)) {
@@ -9442,7 +9442,7 @@ static int zend_jit_init_fcall(dasm_State **Dst, const zend_op *opline, uint32_t
94429442
| jz >3
94439443
#ifdef _WIN32
94449444
} else if (func->type == ZEND_INTERNAL_FUNCTION) {
9445-
const zif_handler *handler = func->internal_function.handler;
9445+
const zif_handler handler = func->internal_function.handler;
94469446

94479447
| .if X64
94489448
|| if (!IS_SIGNED_32BIT(handler)) {
@@ -9673,7 +9673,7 @@ static int zend_jit_init_method_call(dasm_State **Dst,
96739673
| jne &exit_addr
96749674
#ifdef _WIN32
96759675
} else if (func->type == ZEND_INTERNAL_FUNCTION) {
9676-
const zif_handler *handler = func->internal_function.handler;
9676+
const zif_handler handler = func->internal_function.handler;
96779677

96789678
| .if X64
96799679
|| if (!IS_SIGNED_32BIT(handler)) {

0 commit comments

Comments
 (0)