Skip to content

Commit 9848d6b

Browse files
committed
ext/opcache/jit/zend_jit: make the "ssa" parameter of zend_may_overflow() const
1 parent 6949015 commit 9848d6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/opcache/jit/zend_jit.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1108,7 +1108,7 @@ static void *dasm_link_and_encode(dasm_State **dasm_state,
11081108
return entry;
11091109
}
11101110

1111-
static bool zend_may_overflow(const zend_op *opline, const zend_ssa_op *ssa_op, const zend_op_array *op_array, zend_ssa *ssa)
1111+
static bool zend_may_overflow(const zend_op *opline, const zend_ssa_op *ssa_op, const zend_op_array *op_array, const zend_ssa *ssa)
11121112
{
11131113
int res;
11141114
zend_long op1_min, op1_max, op2_min, op2_max;

0 commit comments

Comments
 (0)