Iterator over the [`OutputInst`] of a block after register allocation.
| 330 | |
| 331 | /// Iterator over the [`OutputInst`] of a block after register allocation. |
| 332 | pub struct OutputIter<'a> { |
| 333 | insts: InstRange, |
| 334 | edits: &'a [(Inst, Option<Edit>)], |
| 335 | regalloc: &'a RegisterAllocator, |
| 336 | } |
| 337 | |
| 338 | impl<'a> Iterator for OutputIter<'a> { |
| 339 | type Item = OutputInst<'a>; |
nothing calls this directly
no outgoing calls
no test coverage detected