We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5fd93e commit 1271daeCopy full SHA for 1271dae
ext/opcache/jit/zend_jit_trace.c
@@ -3172,6 +3172,12 @@ static zend_jit_reg_var* zend_jit_trace_allocate_registers(zend_jit_trace_rec *t
3172
idx++;
3173
while (opline->opcode == ZEND_RECV_INIT) {
3174
/* RECV_INIT doesn't support registers */
3175
+#ifdef ZEND_JIT_IR
3176
+ if (ssa_op->result_use >= 0 && RA_HAS_IVAL(ssa_op->result_use)) {
3177
+ RA_IVAL_DEL(ssa_op->result_use);
3178
+ count--;
3179
+ }
3180
+#endif
3181
if (ssa_op->result_def >= 0) {
3182
RA_IVAL_CLOSE(EX_VAR_TO_NUM(opline->result.var), idx);
3183
SET_STACK_VAR(stack, EX_VAR_TO_NUM(opline->result.var), ssa_op->result_def);
0 commit comments