The output of the register allocator.
| 166 | |
| 167 | /// The output of the register allocator. |
| 168 | pub struct Output<'a, F, R> { |
| 169 | pub(crate) regalloc: &'a RegisterAllocator, |
| 170 | pub(crate) func: &'a F, |
| 171 | pub(crate) reginfo: &'a R, |
| 172 | } |
| 173 | |
| 174 | impl<'a, F, R> Output<'a, F, R> |
| 175 | where |
nothing calls this directly
no outgoing calls
no test coverage detected