()
| 158 | |
| 159 | impl Splitter { |
| 160 | pub fn new() -> Self { |
| 161 | Self { |
| 162 | segments: vec![], |
| 163 | minimal_segments: vec![], |
| 164 | new_vregs: vec![], |
| 165 | uses: vec![], |
| 166 | gaps: vec![], |
| 167 | gap_segments: vec![], |
| 168 | } |
| 169 | } |
| 170 | } |
| 171 | |
| 172 | impl<F: Function, R: RegInfo> Context<'_, F, R> { |
nothing calls this directly
no outgoing calls
no test coverage detected