[php-src] master: ext/opcache: fix "untill" to "until" in various comments

Weilin Du <[email protected]> Sat, 18 Jul 2026 19:06:19 +0000
Newsgroups gmane.comp.php.cvs.general
Message-ID <[email protected]>
Author: Weilin Du (LamentXU123)
Date: 2026-07-19T03:06:06+08:00

Commit: https://github.com/php/php-src/commit/5b79dc5514b1ddce1e86baba037ab74618c36cbd
Raw diff: https://github.com/php/php-src/commit/5b79dc5514b1ddce1e86baba037ab74618c36cbd.diff

ext/opcache: fix "untill" to "until" in various comments

Changed paths:
  M  ext/opcache/jit/ir/ir_cfg.c


Diff:

diff --git a/ext/opcache/jit/ir/ir_cfg.c b/ext/opcache/jit/ir/ir_cfg.c
index 92042ea8cbb5..80258f7515cc 100644
--- a/ext/opcache/jit/ir/ir_cfg.c
+++ b/ext/opcache/jit/ir/ir_cfg.c
@@ -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++;
@@ -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];