()
| 122 | |
| 123 | impl AllocationQueue { |
| 124 | pub fn new() -> Self { |
| 125 | Self { |
| 126 | queue: BinaryHeap::new(), |
| 127 | } |
| 128 | } |
| 129 | |
| 130 | /// Initializes the allocation queue from the set of existing virtual |
| 131 | /// register and virtual register groups. |
nothing calls this directly
no outgoing calls
no test coverage detected