Skip to content

Commit f013aa1

Browse files
committed
Remove zend_jit_set_ip_ex
1 parent ad3c920 commit f013aa1

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

ext/opcache/jit/zend_jit_ir.c

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1030,11 +1030,6 @@ static int zend_jit_set_ip(zend_jit_ctx *jit, const zend_op *target)
10301030
return 1;
10311031
}
10321032

1033-
static int zend_jit_set_ip_ex(zend_jit_ctx *jit, const zend_op *target, bool set_ip_reg)
1034-
{
1035-
return zend_jit_set_ip(jit, target);
1036-
}
1037-
10381033
static void jit_SET_EX_OPLINE(zend_jit_ctx *jit, const zend_op *target)
10391034
{
10401035
if (jit->last_valid_opline == target) {

ext/opcache/jit/zend_jit_trace.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7438,7 +7438,7 @@ static const void *zend_jit_trace_exit_to_vm(uint32_t trace_num, uint32_t exit_n
74387438
original_handler = 1;
74397439
}
74407440
}
7441-
zend_jit_set_ip_ex(&ctx, opline, original_handler);
7441+
zend_jit_set_ip(&ctx, opline);
74427442
}
74437443

74447444
zend_jit_trace_return(&ctx, original_handler, opline);

0 commit comments

Comments
 (0)