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