Skip to content

Commit ddf85c6

Browse files
update comment
1 parent 859b7bc commit ddf85c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tools/jit/_optimizers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ def __post_init__(self) -> None:
224224
inst = self._parse_instruction(line)
225225
block.instructions.append(inst)
226226
if inst.is_branch() or inst.kind == InstructionKind.CALL:
227-
# A block ending in a branch has a target and fallthrough:
227+
# A block ending in a branch/call has a target and fallthrough:
228228
assert inst.target is not None
229229
block.target = self._lookup_label(inst.target)
230230
assert block.fallthrough

0 commit comments

Comments
 (0)