summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2020-06-08 12:18:05 +0300
committerDmitry Stogov <dmitry@zend.com>2020-06-08 12:18:05 +0300
commit13909e5555cd941be3062470b47996b7496e90da (patch)
treeb42f3b251888e70301b517966e2356238867c813
parent88355dd338835f7a59415ecb2e7e970658f3867f (diff)
downloadphp-git-13909e5555cd941be3062470b47996b7496e90da.tar.gz
Fixed incorrect zend_bool type usage
-rw-r--r--ext/opcache/jit/zend_jit_x86.dasc2
1 files changed, 1 insertions, 1 deletions
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);