We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent beea690 commit 629dd1fCopy full SHA for 629dd1f
1 file changed
ext/opcache/jit/zend_jit.c
@@ -115,7 +115,7 @@ static zend_string *zend_jit_func_name(const zend_op_array *op_array);
115
static bool zend_jit_needs_arg_dtor(const zend_function *func, uint32_t arg_num, zend_call_info *call_info);
116
static bool zend_jit_supported_binary_op(uint8_t op, uint32_t op1_info, uint32_t op2_info);
117
118
-static bool dominates(const zend_basic_block *blocks, int a, int b) {
+static bool dominates(const zend_basic_block *blocks, uint32_t a, uint32_t b) {
119
while (blocks[b].level > blocks[a].level) {
120
b = blocks[b].idom;
121
}
0 commit comments