If this returns true, we need post-loop cleanup.
(self)
| 657 | self.loop_exit = loop_exit |
| 658 | |
| 659 | def need_cleanup(self) -> bool: |
| 660 | """If this returns true, we need post-loop cleanup.""" |
| 661 | return False |
| 662 | |
| 663 | def add_cleanup(self, exit_block: BasicBlock) -> None: |
| 664 | """Add post-loop cleanup, if needed.""" |
no outgoing calls
no test coverage detected