File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ];
You can’t perform that action at this time.
0 commit comments