From a172e056a0f4398155552d95547ecce5bbfbceff Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Wed, 8 Apr 2020 00:27:19 +0300 Subject: [PATCH] Fixed TYPE/INFO mismatch --- ext/opcache/jit/zend_jit_trace.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.50.1