Skip to content

[ci skip] Fixed some typos #6373

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ext/opcache/jit/zend_jit_trace.c
Original file line number Diff line number Diff line change
Expand Up @@ -2216,7 +2216,7 @@ static zend_lifetime_interval** zend_jit_trace_allocate_registers(zend_jit_trace
&& opline->opcode == ZEND_ASSIGN
&& opline->op1_type == IS_CV
&& zend_jit_var_may_alias(op_array, op_array_ssa, EX_VAR_TO_NUM(opline->op1.var)) != NO_ALIAS) {
/* avoid register allocation in case of possiblity of indirect modification*/
/* avoid register allocation in case of possibility of indirect modification*/
support_opline = 0;
}

Expand Down Expand Up @@ -5937,7 +5937,7 @@ static const void *zend_jit_trace(zend_jit_trace_rec *trace_buffer, uint32_t par
}

jit_cleanup:
/* Clenup used op_arrays */
/* Clean up used op_arrays */
while (num_op_arrays > 0) {
op_array = op_arrays[--num_op_arrays];
jit_extension =
Expand Down