Skip to content

Commit 5b79dc5

Browse files
committed
ext/opcache: fix "untill" to "until" in various comments
1 parent e3de8ed commit 5b79dc5

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

ext/opcache/jit/ir/ir_cfg.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -266,14 +266,14 @@ int ir_build_cfg(ir_ctx *ctx)
266266
ir_bitset_incl(bb_leaks, *p);
267267
}
268268
}
269-
/* Skip control nodes untill BB start */
269+
/* Skip control nodes until BB start */
270270
ref = insn->op1;
271271
while (1) {
272272
insn = &ctx->ir_base[ref];
273273
if (IR_IS_BB_START(insn->op)) {
274274
break;
275275
}
276-
ref = insn->op1; // follow connected control blocks untill BB start
276+
ref = insn->op1; // follow connected control blocks until BB start
277277
}
278278
/* Mark BB Start */
279279
bb_count++;
@@ -306,7 +306,7 @@ int ir_build_cfg(ir_ctx *ctx)
306306
IR_ASSERT(IR_IS_BB_START(insn->op));
307307
/* Remember BB start */
308308
start = ref;
309-
/* Skip control nodes untill BB end */
309+
/* Skip control nodes until BB end */
310310
while (1) {
311311
ref = ir_next_control(ctx, ref);
312312
insn = &ctx->ir_base[ref];

0 commit comments

Comments
 (0)