Skip to content
Merged
Prev Previous commit
Next Next commit
update comment
  • Loading branch information
Fidget-Spinner committed Dec 17, 2025
commit ddf85c675ccbf20626e2bb880f7bcd585121cd7e
2 changes: 1 addition & 1 deletion Tools/jit/_optimizers.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ def __post_init__(self) -> None:
inst = self._parse_instruction(line)
block.instructions.append(inst)
if inst.is_branch() or inst.kind == InstructionKind.CALL:
# A block ending in a branch has a target and fallthrough:
# A block ending in a branch/call has a target and fallthrough:
assert inst.target is not None
block.target = self._lookup_label(inst.target)
assert block.fallthrough
Expand Down
Loading