Skip to content

Commit a172e05

Browse files
committed
Fixed TYPE/INFO mismatch
1 parent 1e8459d commit a172e05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/opcache/jit/zend_jit_trace.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1594,7 +1594,7 @@ static zend_ssa *zend_jit_trace_build_tssa(zend_jit_trace_rec *trace_buffer, uin
15941594
top = zend_jit_trace_call_frame(top, p->op_array);
15951595
if (p->func->type == ZEND_USER_FUNCTION) {
15961596
for (i = 0; i < p->op_array->last_var + p->op_array->T; i++) {
1597-
SET_STACK_TYPE(call->stack, i, IS_UNKNOWN);
1597+
SET_STACK_INFO(call->stack, i, -1);
15981598
}
15991599
}
16001600
} else if (p->op == ZEND_JIT_TRACE_DO_ICALL) {

0 commit comments

Comments
 (0)