From: Dmitry Stogov Date: Tue, 7 Apr 2020 21:27:19 +0000 (+0300) Subject: Fixed TYPE/INFO mismatch X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a172e056a0f4398155552d95547ecce5bbfbceff;p=php Fixed TYPE/INFO mismatch --- diff --git a/ext/opcache/jit/zend_jit_trace.c b/ext/opcache/jit/zend_jit_trace.c index 171ecd7d51..213ca5d42b 100644 --- a/ext/opcache/jit/zend_jit_trace.c +++ b/ext/opcache/jit/zend_jit_trace.c @@ -1594,7 +1594,7 @@ static zend_ssa *zend_jit_trace_build_tssa(zend_jit_trace_rec *trace_buffer, uin top = zend_jit_trace_call_frame(top, p->op_array); if (p->func->type == ZEND_USER_FUNCTION) { for (i = 0; i < p->op_array->last_var + p->op_array->T; i++) { - SET_STACK_TYPE(call->stack, i, IS_UNKNOWN); + SET_STACK_INFO(call->stack, i, -1); } } } else if (p->op == ZEND_JIT_TRACE_DO_ICALL) {