(self, fn: FuncIR)
| 58 | files = ["opt-copy-propagation.test"] |
| 59 | |
| 60 | def do_optimizations(self, fn: FuncIR) -> None: |
| 61 | do_copy_propagation(fn, CompilerOptions(strict_traceback_checks=True)) |
| 62 | |
| 63 | |
| 64 | class TestFlagElimination(OptimizationSuite): |
nothing calls this directly
no test coverage detected