(func: &Function)
| 780 | } |
| 781 | |
| 782 | fn inst_count(func: &Function) -> usize { |
| 783 | func.layout |
| 784 | .blocks() |
| 785 | .map(|block| func.layout.block_insts(block).count()) |
| 786 | .sum() |
| 787 | } |
| 788 | |
| 789 | /// Resolve aliases only if function still crashes after this. |
| 790 | fn try_resolve_aliases(context: &mut CrashCheckContext, func: &mut Function) { |
no test coverage detected