Commit 5b79dc5514b for php.net

commit 5b79dc5514b1ddce1e86baba037ab74618c36cbd
Author: Weilin Du <weilindu@php.net>
Date:   Sun Jul 19 03:06:06 2026 +0800

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

diff --git a/ext/opcache/jit/ir/ir_cfg.c b/ext/opcache/jit/ir/ir_cfg.c
index 92042ea8cbb..80258f7515c 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];