(label: BasicBlock)
| 128 | |
| 129 | |
| 130 | def get_real_target(label: BasicBlock) -> BasicBlock: |
| 131 | if len(label.ops) == 1 and isinstance(label.ops[-1], Goto): |
| 132 | label = label.ops[-1].label |
| 133 | return label |
| 134 | |
| 135 | |
| 136 | def cleanup_cfg(blocks: list[BasicBlock]) -> None: |
no test coverage detected
searching dependent graphs…