Skip to content

Commit 17c2e40

Browse files
committed
Rename function to match opcode name
1 parent 4c79df5 commit 17c2e40

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ext/opcache/jit/zend_jit.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2584,7 +2584,7 @@ static int zend_jit(const zend_op_array *op_array, zend_ssa *ssa, const zend_op
25842584
}
25852585
goto done;
25862586
case ZEND_CHECK_UNDEF_ARGS:
2587-
if (!zend_jit_check_named(&dasm_state, opline)) {
2587+
if (!zend_jit_check_undef_args(&dasm_state, opline)) {
25882588
goto jit_failure;
25892589
}
25902590
goto done;

ext/opcache/jit/zend_jit_trace.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3636,7 +3636,7 @@ static const void *zend_jit_trace(zend_jit_trace_rec *trace_buffer, uint32_t par
36363636
}
36373637
goto done;
36383638
case ZEND_CHECK_UNDEF_ARGS:
3639-
if (!zend_jit_check_named(&dasm_state, opline)) {
3639+
if (!zend_jit_check_undef_args(&dasm_state, opline)) {
36403640
goto jit_failure;
36413641
}
36423642
goto done;

ext/opcache/jit/zend_jit_x86.dasc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9197,7 +9197,7 @@ static int zend_jit_send_val(dasm_State **Dst, const zend_op *opline, const zend
91979197
return 1;
91989198
}
91999199

9200-
static int zend_jit_check_named(dasm_State **Dst, const zend_op *opline)
9200+
static int zend_jit_check_undef_args(dasm_State **Dst, const zend_op *opline)
92019201
{
92029202
| mov FCARG1a, EX->call
92039203
| test byte [FCARG1a + offsetof(zend_execute_data, This.u1.type_info) + 3], (ZEND_CALL_MAY_HAVE_UNDEF >> 24)

0 commit comments

Comments
 (0)