From 13909e5555cd941be3062470b47996b7496e90da Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Mon, 8 Jun 2020 12:18:05 +0300 Subject: [PATCH] Fixed incorrect zend_bool type usage --- ext/opcache/jit/zend_jit_x86.dasc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/opcache/jit/zend_jit_x86.dasc b/ext/opcache/jit/zend_jit_x86.dasc index e107bfb659..9cc9f158c4 100644 --- a/ext/opcache/jit/zend_jit_x86.dasc +++ b/ext/opcache/jit/zend_jit_x86.dasc @@ -10517,7 +10517,7 @@ static int zend_jit_recv(dasm_State **Dst, const zend_op *opline, const zend_op_ static int zend_jit_recv_init(dasm_State **Dst, const zend_op *opline, const zend_op_array *op_array, zend_bool is_last, int may_throw) { zend_arg_info *arg_info = NULL; - zend_bool has_slow = 0; + uint8_t has_slow = 0; uint32_t arg_num = opline->op1.num; zval *zv = RT_CONSTANT(opline, opline->op2); zend_jit_addr res_addr = ZEND_ADDR_MEM_ZVAL(ZREG_FP, opline->result.var); -- 2.40.0