Skip to content
Merged
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
6 changes: 3 additions & 3 deletions ext/opcache/jit/ir/ir_cfg.c
Original file line number Diff line number Diff line change
Expand Up @@ -266,14 +266,14 @@ int ir_build_cfg(ir_ctx *ctx)
ir_bitset_incl(bb_leaks, *p);
}
}
/* Skip control nodes untill BB start */
/* Skip control nodes until BB start */
ref = insn->op1;
while (1) {
insn = &ctx->ir_base[ref];
if (IR_IS_BB_START(insn->op)) {
break;
}
ref = insn->op1; // follow connected control blocks untill BB start
ref = insn->op1; // follow connected control blocks until BB start
}
/* Mark BB Start */
bb_count++;
Expand Down Expand Up @@ -306,7 +306,7 @@ int ir_build_cfg(ir_ctx *ctx)
IR_ASSERT(IR_IS_BB_START(insn->op));
/* Remember BB start */
start = ref;
/* Skip control nodes untill BB end */
/* Skip control nodes until BB end */
while (1) {
ref = ir_next_control(ctx, ref);
insn = &ctx->ir_base[ref];
Expand Down