We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 859b7bc commit ddf85c6Copy full SHA for ddf85c6
Tools/jit/_optimizers.py
@@ -224,7 +224,7 @@ def __post_init__(self) -> None:
224
inst = self._parse_instruction(line)
225
block.instructions.append(inst)
226
if inst.is_branch() or inst.kind == InstructionKind.CALL:
227
- # A block ending in a branch has a target and fallthrough:
+ # A block ending in a branch/call has a target and fallthrough:
228
assert inst.target is not None
229
block.target = self._lookup_label(inst.target)
230
assert block.fallthrough
0 commit comments